- fix: synthesize unpacking progress callbacks for packages w/o files.
authorjbj <devnull@localhost>
Sun, 19 May 2002 23:37:24 +0000 (23:37 +0000)
committerjbj <devnull@localhost>
Sun, 19 May 2002 23:37:24 +0000 (23:37 +0000)
CVS patchset: 5440
CVS date: 2002/05/19 23:37:24

48 files changed:
CHANGES
build/files.c
build/pack.c
lib/depends.c
lib/fsm.c
lib/package.c
lib/psm.c
lib/rpmal.h
lib/rpmchecksig.c
lib/rpmcli.h
lib/rpmds.c
lib/rpmds.h
lib/rpmfi.c
lib/rpmfi.h
lib/rpminstall.c
lib/rpmlib.h
lib/rpmps.c
lib/rpmps.h
lib/rpmte.c
lib/rpmte.h
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/fi.po
po/fr.po
po/gl.po
po/is.po
po/ja.po
po/ko.po
po/no.po
po/pl.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
python/rpmmodule.c
rpm.spec.in
tools/rpmsort.c

diff --git a/CHANGES b/CHANGES
index 8cf4508..39a8a34 100644 (file)
--- a/CHANGES
+++ b/CHANGES
        - plug install mode leaks.
        - opaque (well mostly) rpmTransactionSet using methods.
        - Grand Renaming of rpm data types.
+       - fix: synthesize unpacking progress callbacks for packages w/o files.
 
 4.0.3 -> 4.0.4:
        - solaris: translate i86pc to i386 (#57182).
index 30345a9..dd56906 100644 (file)
 #include <rpmbuild.h>
 
 #include "cpio.h"
+
+#define        _RPMFI_INTERNAL
 #include "rpmfi.h"
+
+#define        _RPMTE_INTERNAL
 #include "rpmte.h"
+
 #include "buildio.h"
 
 #include "myftw.h"
index 7362974..eb9519d 100644 (file)
@@ -14,6 +14,7 @@
 #include "fsm.h"
 #include "psm.h"
 
+#define        _RPMFI_INTERNAL         /* XXX fi->fsm */
 #include "rpmfi.h"
 #include "rpmts.h"
 
index c8815b8..fb3d5b7 100644 (file)
 #include "rpmal.h"
 #include "rpmds.h"
 #include "rpmfi.h"
+
+#define        _RPMTE_INTERNAL
 #include "rpmte.h"
+
+#define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
 #include "debug.h"
@@ -482,7 +486,7 @@ static int unsatisfiedDepend(rpmts ts, rpmds dep)
     /*
      * Search for an unsatisfied dependency.
      */
-    if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOSUGGESTS) && ts->solve != NULL)
+    if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOSUGGESTS) && ts->solve != NULL)
        xx = (*ts->solve) (ts, dep);
 
 unsatisfied:
@@ -1142,7 +1146,7 @@ int rpmtsOrder(rpmts ts)
     int_32 Flags;
 
 #ifdef DYING
-    int chainsaw = rpmtsGetFlags(ts) & RPMTRANS_FLAG_CHAINSAW;
+    int chainsaw = rpmtsFlags(ts) & RPMTRANS_FLAG_CHAINSAW;
 #else
     int chainsaw = 1;
 #endif
index 0dc3e28..4ad21a2 100644 (file)
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -15,6 +15,7 @@
 #include "psm.h"       /* XXX fiTypeString */
 #include "rpmerr.h"
 
+#define        _RPMFI_INTERNAL
 #include "rpmfi.h"
 #include "rpmte.h"
 #include "rpmts.h"
@@ -126,7 +127,7 @@ mapInitIterator(rpmts ts, rpmfi fi)
     iter = xcalloc(1, sizeof(*iter));
     iter->ts = rpmtsLink(ts, "mapIterator");
     iter->fi = rpmfiLink(fi, "mapIterator");
-    iter->reverse = (fi->te->type == TR_REMOVED && fi->action != FA_COPYOUT);
+    iter->reverse = (rpmteType(fi->te) == TR_REMOVED && fi->action != FA_COPYOUT);
     iter->i = (iter->reverse ? (fi->fc - 1) : 0);
     iter->isave = iter->i;
     return iter;
@@ -503,14 +504,9 @@ int fsmSetup(FSM_t fsm, fileStage goal,
     fsm->iter = mapInitIterator(ts, fi);
 
     if (fsm->goal == FSM_PKGINSTALL) {
-       if (ts && ts->notify) {
-           /*@-type@*/ /* FIX: cast? */
-           /*@-noeffectuncon @*/ /* FIX: check rc */
-           (void)ts->notify(fi->h, RPMCALLBACK_INST_START, 0, fi->archiveSize,
-                       rpmfiKey(fi), ts->notifyData);
-           /*@=noeffectuncon @*/
-           /*@=type@*/
-       }
+       void * ptr;
+       ptr = rpmtsNotify(ts, fi->te,
+                       RPMCALLBACK_INST_START, 0, fi->archiveSize);
     }
 
     /*@-assignexpose@*/
@@ -595,22 +591,22 @@ int fsmMapPath(FSM_t fsm)
            break;
        case FA_COPYIN:
        case FA_CREATE:
-assert(fi->te->type == TR_ADDED);
+assert(rpmteType(fi->te) == TR_ADDED);
            break;
 
        case FA_SKIPNSTATE:
-           if (fi->fstates && fi->te->type == TR_ADDED)
+           if (fi->fstates && rpmteType(fi->te) == TR_ADDED)
                fi->fstates[i] = RPMFILE_STATE_NOTINSTALLED;
            break;
 
        case FA_SKIPNETSHARED:
-           if (fi->fstates && fi->te->type == TR_ADDED)
+           if (fi->fstates && rpmteType(fi->te) == TR_ADDED)
                fi->fstates[i] = RPMFILE_STATE_NETSHARED;
            break;
 
        case FA_BACKUP:
            if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
-           switch (fi->te->type) {
+           switch (rpmteType(fi->te)) {
            case TR_ADDED:
                fsm->osuffix = SUFFIX_RPMORIG;
                /*@innerbreak@*/ break;
@@ -621,18 +617,18 @@ assert(fi->te->type == TR_ADDED);
            break;
 
        case FA_ALTNAME:
-assert(fi->te->type == TR_ADDED);
+assert(rpmteType(fi->te) == TR_ADDED);
            if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
                fsm->nsuffix = SUFFIX_RPMNEW;
            break;
 
        case FA_SAVE:
-assert(fi->te->type == TR_ADDED);
+assert(rpmteType(fi->te) == TR_ADDED);
            if (!(fsm->fflags & RPMFILE_GHOST)) /* XXX Don't if %ghost file. */
                fsm->osuffix = SUFFIX_RPMSAVE;
            break;
        case FA_ERASE:
-           assert(fi->te->type == TR_REMOVED);
+           assert(rpmteType(fi->te) == TR_REMOVED);
            /*
             * XXX TODO: %ghost probably shouldn't be removed, but that changes
             * legacy rpm behavior.
@@ -689,7 +685,7 @@ int fsmMapAttrs(FSM_t fsm)
 
        {   rpmts ts = fsmGetTs(fsm);
 
-           if (ts != NULL && !(ts->transFlags & RPMTRANS_FLAG_NOMD5)) {
+           if (ts != NULL && !(rpmtsFlags(ts) & RPMTRANS_FLAG_NOMD5)) {
                fsm->fmd5sum = (fi->fmd5s ? fi->fmd5s[i] : NULL);
                fsm->md5sum = (fi->md5s ? (fi->md5s + (16 * i)) : NULL);
            } else {
@@ -896,15 +892,9 @@ static int writeFile(/*@special@*/ FSM_t fsm, int writeData)
 
     {  const rpmts ts = fsmGetTs(fsm);
        rpmfi fi = fsmGetFi(fsm);
-       if (ts && ts->notify && fi) {
-           size_t size = (fdGetCpioPos(fsm->cfd) - pos);
-           /*@-type@*/ /* FIX: cast? */
-           /*@-noeffectuncon @*/ /* FIX: check rc */
-           (void)ts->notify(fi->h, RPMCALLBACK_INST_PROGRESS, size, size,
-                       rpmfiKey(fi), ts->notifyData);
-           /*@=noeffectuncon @*/
-           /*@=type@*/
-       }
+       size_t size = (fdGetCpioPos(fsm->cfd) - pos);
+       void * ptr;
+       ptr = rpmtsNotify(ts, fi->te, RPMCALLBACK_INST_PROGRESS, size, size);
     }
 
     rc = 0;
@@ -1435,7 +1425,7 @@ int fsmStage(FSM_t fsm, fileStage stage)
     case FSM_CREATE:
        {   rpmts ts = fsmGetTs(fsm);
 #define        _tsmask (RPMTRANS_FLAG_PKGCOMMIT | RPMTRANS_FLAG_COMMIT)
-           fsm->commit = ((ts && (ts->transFlags & _tsmask) &&
+           fsm->commit = ((ts && (rpmtsFlags(ts) & _tsmask) &&
                        fsm->goal != FSM_PKGCOMMIT) ? 0 : 1);
 #undef _tsmask
        }
@@ -1696,15 +1686,9 @@ if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break;
        if (fsm->goal == FSM_PKGINSTALL || fsm->goal == FSM_PKGBUILD) {
            rpmts ts = fsmGetTs(fsm);
            rpmfi fi = fsmGetFi(fsm);
-           if (ts && ts->notify && fi) {
-               /*@-type@*/ /* FIX: cast? */
-               /*@-noeffectuncon @*/ /* FIX: check rc */
-               (void)ts->notify(fi->h, RPMCALLBACK_INST_PROGRESS,
-                       fdGetCpioPos(fsm->cfd), fi->archiveSize,
-                       rpmfiKey(fi), ts->notifyData);
-               /*@=noeffectuncon @*/
-               /*@=type@*/
-           }
+           void * ptr;
+           ptr = rpmtsNotify(ts, fi->te, RPMCALLBACK_INST_PROGRESS,
+                       fdGetCpioPos(fsm->cfd), fi->archiveSize);
        }
        break;
     case FSM_UNDO:
index 4b286b8..47a8cf4 100644 (file)
@@ -10,6 +10,8 @@
 #include <rpmlib.h>
 
 #include "rpmps.h"
+
+#define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
 #include "misc.h"      /* XXX stripTrailingChar() */
index ec48d5f..07f7e3d 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
 #include <rpmurl.h>
 
 #include "rpmal.h"
+
+#define        _RPMDS_INTERNAL         /* XXX trigger->i */
 #include "rpmds.h"
+
+#define _RPMFI_INTERNAL
 #include "rpmfi.h"
+
+#define        _RPMTE_INTERNAL
 #include "rpmte.h"
 #include "rpmts.h"
 
@@ -498,9 +504,12 @@ rpmRC rpmInstallSourcePackage(rpmts ts, FD_t fd,
        goto exit;
     }
 
-/*@-assignexpose -type@*/
-    fi->te = ts->order[0];
-/*@=assignexpose =type@*/
+/*@-onlytrans@*/       /* FIX: te reference */
+    fi->te = rpmtsElement(ts, 0);
+/*@=onlytrans@*/
+/*@-nullpass@*/                /* FIX fi->h may be null */
+    fi->te->h = headerLink(fi->h, "fi->te->h");
+/*@=nullpass@*/
     fi->te->fd = fdLink(fd, "installSourcePackage");
     hge = fi->hge;
     hfd = fi->hfd;
@@ -561,14 +570,14 @@ rpmRC rpmInstallSourcePackage(rpmts ts, FD_t fd,
        }
     }
 
-    _sourcedir = rpmGenPath(rpmtsGetRootDir(ts), "%{_sourcedir}", "");
+    _sourcedir = rpmGenPath(rpmtsRootDir(ts), "%{_sourcedir}", "");
     rc = chkdir(_sourcedir, "sourcedir");
     if (rc) {
        rc = RPMRC_FAIL;
        goto exit;
     }
 
-    _specdir = rpmGenPath(rpmtsGetRootDir(ts), "%{_specdir}", "");
+    _specdir = rpmGenPath(rpmtsRootDir(ts), "%{_specdir}", "");
     rc = chkdir(_specdir, "specdir");
     if (rc) {
        rc = RPMRC_FAIL;
@@ -627,6 +636,7 @@ exit:
 
     /*@-branchstate@*/
     if (fi) {
+       fi->te->h = headerFree(fi->te->h, "fi->te->h");
        if (fi->te->fd)
            (void) Fclose(fi->te->fd);
        fi->te->fd = NULL;
@@ -749,7 +759,7 @@ static int runScript(PSM_t psm, Header h,
     prefixBuf = alloca(maxPrefixLength + 50);
 
     if (script) {
-       const char * rootDir = rpmtsGetRootDir(ts);
+       const char * rootDir = rpmtsRootDir(ts);
        FD_t fd;
 
        /*@-branchstate@*/
@@ -861,7 +871,7 @@ static int runScript(PSM_t psm, Header h,
            }
        }
 
-       rootDir = rpmtsGetRootDir(ts);
+       rootDir = rpmtsRootDir(ts);
        if (rootDir  != NULL)   /* XXX can't happen */
        switch(urlIsURL(rootDir)) {
        case URL_IS_PATH:
@@ -1237,7 +1247,7 @@ int psmStage(PSM_t psm, pkgStage stage)
     case PSM_INIT:
        rpmMessage(RPMMESS_DEBUG, _("%s: %s has %d files, test = %d\n"),
                psm->stepName, rpmteNEVR(psm->te),
-               rpmfiFC(fi), (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST));
+               rpmfiFC(fi), (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST));
 
        /*
         * When we run scripts, we pass an argument which is the number of 
@@ -1264,7 +1274,7 @@ assert(psm->mi == NULL);
 
            while ((psm->oh = rpmdbNextIterator(psm->mi))) {
                fi->record = rpmdbGetIteratorOffset(psm->mi);
-               if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_MULTILIB)
+               if (rpmtsFlags(ts) & RPMTRANS_FLAG_MULTILIB)
                    psm->oh = headerCopy(psm->oh);
                else
                    psm->oh = NULL;
@@ -1279,7 +1289,7 @@ assert(psm->mi == NULL);
                memset(fi->fstates, RPMFILE_STATE_NORMAL, fc);
            }
 
-           if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_JUSTDB)       break;
+           if (rpmtsFlags(ts) & RPMTRANS_FLAG_JUSTDB)  break;
            if (fc <= 0)                                break;
        
            /*
@@ -1316,6 +1326,8 @@ 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");
        }
        if (psm->goal == PSM_PKGSAVE) {
            /* Open output package for writing. */
@@ -1338,7 +1350,7 @@ assert(psm->mi == NULL);
        }
        break;
     case PSM_PRE:
-       if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)     break;
+       if (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)        break;
 
        /* Change root directory if requested and not already done. */
        rc = psmStage(psm, PSM_CHROOT_IN);
@@ -1347,11 +1359,11 @@ assert(psm->mi == NULL);
            psm->scriptTag = RPMTAG_PREIN;
            psm->progTag = RPMTAG_PREINPROG;
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOTRIGGERPREIN)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOTRIGGERPREIN)) {
                /* XXX FIXME: implement %triggerprein. */
            }
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOPRE)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOPRE)) {
                rc = psmStage(psm, PSM_SCRIPT);
                if (rc) {
                    rpmError(RPMERR_SCRIPT,
@@ -1369,7 +1381,7 @@ assert(psm->mi == NULL);
            psm->sense = RPMSENSE_TRIGGERUN;
            psm->countCorrection = -1;
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOTRIGGERUN)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOTRIGGERUN)) {
                /* Run triggers in other package(s) this package sets off. */
                rc = psmStage(psm, PSM_TRIGGERS);
                if (rc) break;
@@ -1379,7 +1391,7 @@ assert(psm->mi == NULL);
                if (rc) break;
            }
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOPREUN))
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOPREUN))
                rc = psmStage(psm, PSM_SCRIPT);
        }
        if (psm->goal == PSM_PKGSAVE) {
@@ -1475,21 +1487,23 @@ assert(psm->mi == NULL);
        }
        break;
     case PSM_PROCESS:
-       if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)     break;
+       if (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)        break;
 
        if (psm->goal == PSM_PKGINSTALL) {
            int i;
 
-           if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_JUSTDB)       break;
-#ifdef DYING
-           if (fi->fc <= 0)                            break;
-           for (i = 0; i < fi->fc; i++)
-#else
-           if (rpmfiFC(fi) <= 0)                       break;
+           if (rpmtsFlags(ts) & RPMTRANS_FLAG_JUSTDB)  break;
+
+           /* XXX Synthesize callbacks for packages with no files. */
+           if (rpmfiFC(fi) <= 0) {
+               void * ptr;
+               ptr = rpmtsNotify(ts, fi->te, RPMCALLBACK_INST_START, 0, 100);
+               ptr = rpmtsNotify(ts, fi->te, RPMCALLBACK_INST_PROGRESS, 100, 100);
+               break;
+           }
+
            (void) rpmfiInit(fi, 0);
-           while ((i = rpmfiNext(fi)) >= 0)
-#endif
-           {
+           while ((i = rpmfiNext(fi)) >= 0) {
                uid_t uid;
                gid_t gid;
 
@@ -1570,8 +1584,8 @@ assert(psm->mi == NULL);
        if (psm->goal == PSM_PKGERASE) {
            int fc = rpmfiFC(fi);
 
-           if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_JUSTDB)       break;
-           if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_APPLYONLY)    break;
+           if (rpmtsFlags(ts) & RPMTRANS_FLAG_JUSTDB)  break;
+           if (rpmtsFlags(ts) & RPMTRANS_FLAG_APPLYONLY)       break;
            if (fc <= 0)                                break;
 
            psm->what = RPMCALLBACK_UNINST_START;
@@ -1625,7 +1639,7 @@ assert(psm->mi == NULL);
        }
        break;
     case PSM_POST:
-       if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)     break;
+       if (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)        break;
 
        if (psm->goal == PSM_PKGINSTALL) {
            int_32 installTime = (int_32) time(NULL);
@@ -1639,7 +1653,7 @@ assert(psm->mi == NULL);
            xx = headerAddEntry(fi->h, RPMTAG_INSTALLTIME, RPM_INT32_TYPE,
                                &installTime, 1);
 
-           if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_MULTILIB) {
+           if (rpmtsFlags(ts) & RPMTRANS_FLAG_MULTILIB) {
                uint_32 multiLib, * newMultiLib, * p;
 
                if (hge(fi->h, RPMTAG_MULTILIBS, NULL,
@@ -1661,7 +1675,7 @@ assert(psm->mi == NULL);
             * If this package has already been installed, remove it from
             * the database before adding the new one.
             */
-           if (fi->record && !(rpmtsGetFlags(ts) & RPMTRANS_FLAG_APPLYONLY)) {
+           if (fi->record && !(rpmtsFlags(ts) & RPMTRANS_FLAG_APPLYONLY)) {
                rc = psmStage(psm, PSM_RPMDB_REMOVE);
                if (rc) break;
            }
@@ -1674,11 +1688,11 @@ assert(psm->mi == NULL);
            psm->sense = RPMSENSE_TRIGGERIN;
            psm->countCorrection = 0;
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOPOST)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOPOST)) {
                rc = psmStage(psm, PSM_SCRIPT);
                if (rc) break;
            }
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOTRIGGERIN)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOTRIGGERIN)) {
                /* Run triggers in other package(s) this package sets off. */
                rc = psmStage(psm, PSM_TRIGGERS);
                if (rc) break;
@@ -1688,7 +1702,7 @@ assert(psm->mi == NULL);
                if (rc) break;
            }
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_APPLYONLY))
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_APPLYONLY))
                rc = markReplacedFiles(psm);
 
        }
@@ -1699,18 +1713,18 @@ assert(psm->mi == NULL);
            psm->sense = RPMSENSE_TRIGGERPOSTUN;
            psm->countCorrection = -1;
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOPOSTUN)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOPOSTUN)) {
                rc = psmStage(psm, PSM_SCRIPT);
                /* XXX WTFO? postun failures don't cause erasure failure. */
            }
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOTRIGGERPOSTUN)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_NOTRIGGERPOSTUN)) {
                /* Run triggers in other package(s) this package sets off. */
                rc = psmStage(psm, PSM_TRIGGERS);
                if (rc) break;
            }
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_APPLYONLY))
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_APPLYONLY))
                rc = psmStage(psm, PSM_RPMDB_REMOVE);
        }
        if (psm->goal == PSM_PKGSAVE) {
@@ -1759,8 +1773,12 @@ assert(psm->mi == NULL);
            /*@=nullstate@*/
        }
 
-       if (fi->h && (psm->goal == PSM_PKGERASE || psm->goal == PSM_PKGSAVE))
-           fi->h = headerFree(fi->h, "PSM_PKGSAVE_POST fi->h");
+       if (psm->goal == PSM_PKGERASE || psm->goal == PSM_PKGSAVE) {
+if (psm->te->h)
+psm->te->h = headerFree(psm->te->h, "psm->te->h");
+           if (fi->h)
+               fi->h = headerFree(fi->h, "PSM_PKGSAVE_POST fi->h");
+       }
        psm->oh = headerFree(psm->oh, "PSM_PKGSAVE_POST psm->oh");
        psm->pkgURL = _free(psm->pkgURL);
        psm->rpmio_flags = _free(psm->rpmio_flags);
@@ -1793,20 +1811,14 @@ assert(psm->mi == NULL);
     case PSM_CREATE:
        break;
     case PSM_NOTIFY:
-/*@-type@*/
-       if (ts && ts->notify) {
-           /*@-noeffectuncon @*/ /* FIX: check rc */
-           (void) ts->notify(fi->h, psm->what, psm->amount, psm->total,
-                               rpmteKey(psm->te), ts->notifyData);
-           /*@=noeffectuncon @*/
-       }
-/*@=type@*/
-       break;
+    {  void * ptr;
+       ptr = rpmtsNotify(ts, psm->te, psm->what, psm->amount, psm->total);
+    }  break;
     case PSM_DESTROY:
        break;
     case PSM_COMMIT:
-       if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_PKGCOMMIT)) break;
-       if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_APPLYONLY) break;
+       if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_PKGCOMMIT)) break;
+       if (rpmtsFlags(ts) & RPMTRANS_FLAG_APPLYONLY) break;
 
        rc = fsmSetup(fi->fsm, FSM_PKGCOMMIT, ts, fi,
                        NULL, NULL, &psm->failedFile);
@@ -1814,7 +1826,7 @@ assert(psm->mi == NULL);
        break;
 
     case PSM_CHROOT_IN:
-    {  const char * rootDir = rpmtsGetRootDir(ts);
+    {  const char * rootDir = rpmtsRootDir(ts);
        /* Change root directory if requested and not already done. */
        if (rootDir != NULL && !rpmtsGetChrootDone(ts) && !psm->chrootDone) {
            static int _loaded = 0;
@@ -1896,12 +1908,12 @@ fprintf(stderr, "*** PSM_RDB_LOAD: header #%u not found\n", fi->record);
        rc = (fi->h ? RPMRC_OK : RPMRC_FAIL);
        break;
     case PSM_RPMDB_ADD:
-       if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)     break;
+       if (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)        break;
        if (fi->h != NULL)      /* XXX can't happen */
        rc = rpmdbAdd(rpmtsGetRdb(ts), rpmtsGetTid(ts), fi->h);
        break;
     case PSM_RPMDB_REMOVE:
-       if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)     break;
+       if (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)        break;
        rc = rpmdbRemove(rpmtsGetRdb(ts), rpmtsGetTid(ts), fi->record);
        break;
 
index 61192cf..35094a7 100644 (file)
@@ -8,6 +8,10 @@
 
 typedef /*@abstract@*/ struct availableList_s *                availableList;
 
+#ifdef __cplusplus
+{
+#endif
+
 /**
  * Initialize available packckages, items, and directory list.
  * @param delta                no. of entries to add on each realloc
index d6b0872..5219b33 100644 (file)
@@ -11,6 +11,8 @@
 
 #include "rpmdb.h"
 #include "rpmps.h"
+
+#define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
 #include "rpmlead.h"
index 81568c6..3e16f61 100644 (file)
@@ -432,7 +432,7 @@ int rpmInstallSource(rpmts ts, const char * arg,
  * Describe database command line requests.
  */
 struct rpmInstallArguments_s {
-    rpmtsFlags transFlags;
+    rpmtransFlags transFlags;
     rpmprobFilterFlags probFilter;
     rpmInstallInterfaceFlags installInterfaceFlags;
     rpmEraseInterfaceFlags eraseInterfaceFlags;
index eafe5a6..a8bc3ab 100644 (file)
@@ -5,6 +5,8 @@
 
 #include <rpmlib.h>
 #include "rpmps.h"
+
+#define        _RPMDS_INTERNAL
 #include "rpmds.h"
 
 #include "debug.h"
index c9093b8..3f11559 100644 (file)
@@ -6,6 +6,7 @@
  * Structure(s) used for dependency tag sets.
  */
 
+#if defined(_RPMDS_INTERNAL)
 /**
  * A package dependency set.
  */
@@ -31,6 +32,7 @@ struct rpmds_s {
     int_32 Count;              /*!< No. of elements */
 /*@refs@*/ int nrefs;          /*!< Reference count. */
 };
+#endif /* _RPMDS_INTERNAL */
 
 #ifdef __cplusplus
 extern "C" {
index 88e9ba5..496f760 100644 (file)
 #include "cpio.h"      /* XXX CPIO_FOO */
 #include "fsm.h"       /* XXX newFSM() */
 
+#define        _RPMFI_INTERNAL
 #include "rpmfi.h"
+
+#define        _RPMTE_INTERNAL /* relocations */
 #include "rpmte.h"
 #include "rpmts.h"
 
@@ -23,7 +26,6 @@
 
 /*@access rpmfi @*/
 /*@access rpmte @*/
-/*@access rpmts @*/    /* XXX for ts->ignoreSet */
 
 /*@unchecked@*/
 static int _fi_debug = 0;
@@ -50,11 +52,6 @@ fprintf(stderr, "--> fi %p ++ %d %s at %s:%u\n", fi, fi->nrefs, msg, fn, ln);
     /*@-refcounttrans@*/ return fi; /*@=refcounttrans@*/
 }
 
-fnpyKey rpmfiKey(rpmfi fi)
-{
-    return (fi != NULL ? rpmteKey(fi->te) : NULL);
-}
-
 int rpmfiFC(rpmfi fi)
 {
     return (fi != NULL ? fi->fc : 0);
@@ -394,7 +391,7 @@ Header relocateFileList(const rpmts ts, rpmfi fi,
     HME_t hme = fi->hme;
     HFD_t hfd = (fi->hfd ? fi->hfd : headerFreeData);
     static int _printed = 0;
-    int allowBadRelocate = (ts->ignoreSet & RPMPROB_FILTER_FORCERELOCATE);
+    int allowBadRelocate = (rpmtsFilterFlags(ts) & RPMPROB_FILTER_FORCERELOCATE);
     rpmRelocation * relocations = NULL;
     int numRelocations;
     const char ** validRelocations;
@@ -490,7 +487,7 @@ Header relocateFileList(const rpmts ts, rpmfi fi,
            if (j == numValid && !allowBadRelocate && actions) {
                rpmps ps = rpmtsGetProblems(ts);
                rpmpsAppend(ps, RPMPROB_BADRELOCATE,
-                       p->NEVR, p->key,
+                       rpmteNEVR(p), rpmteKey(p),
                        relocations[i].oldPath, NULL, NULL, 0);
                ps = rpmpsFree(ps);
            }
@@ -601,7 +598,7 @@ Header relocateFileList(const rpmts ts, rpmfi fi,
         * If only adding libraries of different arch into an already
         * installed package, skip all other files.
         */
-       if (p->multiLib && !isFileMULTILIB((fFlags[i]))) {
+       if (rpmteMultiLib(p) && !isFileMULTILIB((fFlags[i]))) {
            if (actions) {
                actions[i] = FA_SKIPMULTILIB;
                rpmMessage(RPMMESS_DEBUG, _("excluding multilib path %s%s\n"), 
@@ -1028,7 +1025,7 @@ if (fi->actions == NULL)
 
     if (ts != NULL)
     if (fi != NULL)
-    if (fi->te != NULL && fi->te->type == TR_ADDED) {
+    if (fi->te != NULL && rpmteType(fi->te) == TR_ADDED) {
        Header foo;
 /* XXX DYING */
 if (fi->actions == NULL)
index 900c5f9..bac24b0 100644 (file)
@@ -6,6 +6,7 @@
  * Structure(s) used for file info tag sets.
  */
 
+#if defined(_RPMFI_INTERNAL)
 /**
  */
 typedef struct sharedFileInfo_s *              sharedFileInfo;
@@ -133,6 +134,8 @@ struct rpmfi_s {
 /*@refs@*/ int nrefs;          /*!< Reference count. */
 };
 
+#endif /* _RPMFI_INTERNAL */
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -172,15 +175,6 @@ rpmfi XrpmfiLink (/*@null@*/ rpmfi fi, /*@null@*/ const char * msg,
 #define        rpmfiLink(_fi, _msg)    XrpmfiLink(_fi, _msg, __FILE__, __LINE__)
 
 /**
- * Retrieve key from transaction element file info.
- * @param fi           transaction element file info
- * @return             transaction element file info key
- */
-/*@exposed@*/ /*@dependent@*/ /*@null@*/
-fnpyKey rpmfiKey(rpmfi fi)
-       /*@*/;
-
-/**
  * Return file count from file info set.
  * @param fi           file info set
  * @return             current file count
index 3c721af..fb92504 100644 (file)
@@ -8,6 +8,8 @@
 
 #include "rpmdb.h"
 #include "rpmps.h"
+
+#define        _RPMTS_INTERNAL         /* ts->goal, ts->dbmode, ts->suggests */
 #include "rpmts.h"
 
 #include "manifest.h"
@@ -246,7 +248,7 @@ int rpmInstall(rpmts ts,
        vsflags |= _RPMTS_VSF_NOSIGNATURES;
     vsflags |= _RPMTS_VSF_VERIFY_LEGACY;
 
-    ts->dbmode = (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)
+    ts->dbmode = (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)
                ? O_RDONLY : (O_RDWR|O_CREAT);
 
     {  int notifyFlags;
@@ -308,7 +310,7 @@ restart:
                fprintf(stdout, _("Retrieving %s\n"), fileURL);
 
            {   char tfnbuf[64];
-               const char * rootDir = rpmtsGetRootDir(ts);
+               const char * rootDir = rpmtsRootDir(ts);
                if (!(rootDir && * rootDir))
                    rootDir = "";
                strcpy(tfnbuf, "rpm-xfer.XXXXXX");
@@ -603,7 +605,7 @@ restart:
                continue;
            }
 
-           if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)) {
+           if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)) {
                eiu->rpmrc = rpmInstallSourcePackage(ts, eiu->fd, NULL, NULL);
                if (eiu->rpmrc != RPMRC_OK) eiu->numFailed++;
            }
@@ -654,7 +656,7 @@ int rpmErase(rpmts ts,
     ts->goal = TSM_ERASE;
 
     /* XXX W2DO? O_EXCL??? */
-    ts->dbmode = (rpmtsGetFlags(ts) & RPMTRANS_FLAG_TEST)
+    ts->dbmode = (rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)
                ? O_RDONLY : (O_RDWR|O_EXCL);
 
     (void) rpmtsOpenDB(ts, ts->dbmode);
@@ -704,7 +706,7 @@ int rpmErase(rpmts ts,
     }
 
     if (!stopUninstall) {
-       (void) rpmtsSetFlags(ts, (rpmtsGetFlags(ts) | RPMTRANS_FLAG_REVERSE));
+       (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) | RPMTRANS_FLAG_REVERSE));
        numFailed += rpmtsRun(ts, NULL, 0);
        ps = rpmtsGetProblems(ts);
        ps = rpmpsFree(ps);
index e8651f1..eb88a9e 100644 (file)
@@ -65,8 +65,7 @@ void * _free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p)
  * sets to reduce errors. In general, installs/upgrades are done before
  * strict removals, and prerequisite ordering is done on installs/upgrades.
  */
-typedef /*@abstract@*/ /*@refcounted@*/
-struct rpmts_s * rpmts;
+typedef /*@abstract@*/ /*@refcounted@*/ struct rpmts_s * rpmts;
 
 /** \ingroup rpmtrans
  * An added/available package retrieval key.
@@ -855,7 +854,7 @@ rpmRC rpmInstallSourcePackage(rpmts ts, FD_t fd,
 /** \ingroup rpmtrans
  * Bit(s) to control rpmtsRun() operation.
  */
-typedef enum rpmtsFlags_e {
+typedef enum rpmtransFlags_e {
     RPMTRANS_FLAG_NONE         = 0,
     RPMTRANS_FLAG_TEST         = (1 <<  0),    /*!< from --test */
     RPMTRANS_FLAG_BUILD_PROBS  = (1 <<  1),    /*!< @todo Document. */
@@ -899,7 +898,7 @@ typedef enum rpmtsFlags_e {
 /*@=enummemuse@*/
     RPMTRANS_FLAG_NOMD5                = (1 << 27),    /*!< from --nomd5 */
     RPMTRANS_FLAG_NOSUGGESTS   = (1 << 28)     /*!< from --nosuggests */
-} rpmtsFlags;
+} rpmtransFlags;
 
 #define        _noTransScripts         \
   ( RPMTRANS_FLAG_NOPRE |      \
index fde4b82..75b5cd9 100644 (file)
@@ -7,14 +7,13 @@
 #include <rpmlib.h>
 
 #include "rpmps.h"
-#include "rpmts.h"
 
 #include "misc.h"
 #include "debug.h"
 
-/*@access fnpyKey@*/
-/*@access rpmProblem@*/
-/*@access rpmProblemSet@*/
+/*@access fnpyKey @*/
+/*@access rpmProblem @*/
+/*@access rpmps @*/
 
 /*@unchecked@*/
 static int _ps_debug = 0;
index 0561989..14e3b17 100644 (file)
@@ -84,10 +84,12 @@ void printDepProblems(FILE * fp, /*@null@*/ const rpmps ps)
  * @param prob         rpm problem
  * @return             formatted string (malloc'd)
  */
+/*@-exportlocal@*/
 /*@-redecl@*/  /* LCL: is confused. */
 /*@only@*/ extern const char * rpmProblemString(const rpmProblem prob)
        /*@*/;
 /*@=redecl@*/
+/*@=exportlocal@*/
 
 /**
  * Unreference a problem set instance.
@@ -101,11 +103,13 @@ rpmps rpmpsUnlink (/*@killref@*/ /*@returned@*/ rpmps ps,
        /*@modifies ps @*/;
 
 /** @todo Remove debugging entry from the ABI. */
+/*@-exportlocal@*/
 /*@null@*/
 rpmps XrpmpsUnlink (/*@killref@*/ /*@returned@*/ rpmps ps,
                const char * msg, const char * fn, unsigned ln)
        /*@modifies ps @*/;
 #define        rpmpsUnlink(_ps, _msg)  XrpmpsUnlink(_ps, _msg, __FILE__, __LINE__)
+/*@=exportlocal@*/
 
 /**
  * Reference a problem set instance.
@@ -144,9 +148,11 @@ rpmps rpmpsFree(/*@killref@*/ /*@only@*/ /*@null@*/ rpmps ps)
  * @param fp           file handle
  * @param prob         rpm problem
  */
+/*@-exportlocal@*/
 void rpmProblemPrint(FILE *fp, rpmProblem prob)
        /*@globals fileSystem @*/
        /*@modifies prob, *fp, fileSystem @*/;
+/*@=exportlocal@*/
 
 /**
  * Print problems to file handle.
index 37968f6..dd4aa5a 100644 (file)
@@ -11,6 +11,8 @@
 
 #include "rpmds.h"
 #include "rpmfi.h"
+
+#define        _RPMTE_INTERNAL
 #include "rpmte.h"
 #include "rpmts.h"
 
@@ -65,9 +67,7 @@ static void delTE(rpmte p)
 
     p->h = headerFree(p->h, "delTE");
 
-    /*@-abstract@*/
     memset(p, 0, sizeof(*p));  /* XXX trash and burn */
-    /*@=abstract@*/
     /*@-nullstate@*/ /* FIX: p->{NEVR,name} annotations */
     return;
     /*@=nullstate@*/
@@ -102,13 +102,13 @@ static void addTE(rpmts ts, rpmte p, Header h,
 
     ep = NULL;
     xx = hge(h, RPMTAG_EPOCH, NULL, (void **)&ep, NULL);
-    /*@-branchstate@*/
+/*@-branchstate@*/
     if (ep) {
        p->epoch = xmalloc(20);
        sprintf(p->epoch, "%d", *ep);
     } else
        p->epoch = NULL;
-    /*@=branchstate@*/
+/*@=branchstate@*/
 
     p->this = rpmdsThis(h, RPMTAG_PROVIDENAME, RPMSENSE_EQUAL);
     p->provides = rpmdsNew(h, RPMTAG_PROVIDENAME, scareMem);
@@ -153,7 +153,7 @@ rpmte rpmteFree(rpmte te)
 }
 
 rpmte rpmteNew(const rpmts ts, Header h,
-               rpmTransactionType type,
+               rpmElementType type,
                fnpyKey key,
                rpmRelocation * relocs,
                int dboffset,
@@ -176,7 +176,7 @@ rpmte rpmteNew(const rpmts ts, Header h,
     return te;
 }
 
-rpmTransactionType rpmteType(rpmte te)
+rpmElementType rpmteType(rpmte te)
 {
     return (te != NULL ? te->type : -1);
 }
@@ -279,14 +279,14 @@ rpmte rpmteParent(rpmte te)
 rpmte rpmteSetParent(rpmte te, rpmte pte)
 {
     rpmte opte = NULL;
-    /*@-branchstate@*/
+/*@-branchstate@*/
     if (te != NULL) {
        opte = te->parent;
        /*@-assignexpose -temptrans@*/
        te->parent = pte;
        /*@=assignexpose =temptrans@*/
     }
-    /*@=branchstate@*/
+/*@=branchstate@*/
     return opte;
 }
 
@@ -442,8 +442,8 @@ rpmtei XrpmteiInit(rpmts ts, const char * fn, unsigned int ln)
 
     tei = xcalloc(1, sizeof(*tei));
     tei->ts = rpmtsLink(ts, "rpmtei");
-    tei->reverse = ((ts->transFlags & RPMTRANS_FLAG_REVERSE) ? 1 : 0);
-    tei->oc = (tei->reverse ? (ts->orderCount - 1) : 0);
+    tei->reverse = ((rpmtsFlags(ts) & RPMTRANS_FLAG_REVERSE) ? 1 : 0);
+    tei->oc = (tei->reverse ? (rpmtsNElements(ts) - 1) : 0);
     tei->ocsave = tei->oc;
 /*@-modfilesys@*/
 if (_te_debug)
@@ -458,37 +458,35 @@ fprintf(stderr, "*** tei %p ++ %s:%d\n", tei, fn, ln);
  * @return             transaction element, NULL on termination
  */
 static /*@dependent@*/ /*@null@*/
-rpmte teNextIterator(rpmtei tei)
+rpmte rpmteiNextIterator(rpmtei tei)
        /*@modifies tei @*/
 {
     rpmte te = NULL;
     int oc = -1;
 
-    if (tei == NULL || tei->ts == NULL || tei->ts->order == NULL)
+    if (tei == NULL || tei->ts == NULL || rpmtsNElements(tei->ts) <= 0)
        return te;
 
     if (tei->reverse) {
        if (tei->oc >= 0)                       oc = tei->oc--;
     } else {
-       if (tei->oc < tei->ts->orderCount)      oc = tei->oc++;
+       if (tei->oc < rpmtsNElements(tei->ts))  oc = tei->oc++;
     }
     tei->ocsave = oc;
-    /*@-abstract @*/
+/*@-branchstate@*/
     if (oc != -1)
-       te = tei->ts->order[oc];
-    /*@=abstract @*/
-    /*@-compdef -usereleased@*/ /* FIX: ts->order may be released */
+       te = rpmtsElement(tei->ts, oc);
+/*@=branchstate@*/
     return te;
-    /*@=compdef =usereleased@*/
 }
 
-rpmte rpmteiNext(rpmtei tei, rpmTransactionType type)
+rpmte rpmteiNext(rpmtei tei, rpmElementType type)
 {
-    rpmte p;
+    rpmte te;
 
-    while ((p = teNextIterator(tei)) != NULL) {
-       if (type == 0 || (p->type & type) != 0)
+    while ((te = rpmteiNextIterator(tei)) != NULL) {
+       if (type == 0 || (te->type & type) != 0)
            break;
     }
-    return p;
+    return te;
 }
index 008e3cb..7f0185f 100644 (file)
@@ -1,21 +1,36 @@
 #ifndef H_RPMTE
 #define H_RPMTE
 
-/** \ingroup rpmdep rpmtrans
+/** \ingroup rpmts rpmte
  * \file lib/rpmte.h
  * Structures used for an "rpmte" transaction element.
  */
 
+/**
+ * Transaction element ordering chain linkage.
+ */
 typedef /*@abstract@*/ struct tsortInfo_s *            tsortInfo;
 
+/**
+ * Transaction element iterator.
+ */
 typedef /*@abstract@*/ struct rpmtei_s *               rpmtei;
 
+/** \ingroup rpmte
+ * Transaction element type.
+ */
+typedef enum rpmElementType_e {
+    TR_ADDED           = (1 << 0),     /*!< Package will be installed. */
+    TR_REMOVED         = (1 << 1)      /*!< Package will be removed. */
+} rpmElementType;
+
 /*@-exportlocal@*/
 /*@unchecked@*/
 extern int _te_debug;
 /*@=exportlocal@*/
 
-/** \ingroup rpmdep
+#if    defined(_RPMTE_INTERNAL)
+/** \ingroup rpmte
  * Dependncy ordering information.
  */
 /*@-fielduse@*/        /* LCL: confused by union? */
@@ -36,18 +51,11 @@ struct tsortInfo_s {
 };
 /*@=fielduse@*/
 
-/** \ingroup rpmdep
- */
-typedef enum rpmTransactionType_e {
-    TR_ADDED           = (1 << 0),     /*!< Package will be installed. */
-    TR_REMOVED         = (1 << 1)      /*!< Package will be removed. */
-} rpmTransactionType;
-
-/** \ingroup rpmdep
+/** \ingroup rpmte
  * A single package instance to be installed/removed atomically.
  */
 struct rpmte_s {
-    rpmTransactionType type;   /*!< Package disposition (installed/removed). */
+    rpmElementType type;       /*!< Package disposition (installed/removed). */
 
 /*@refcounted@*/ /*@null@*/
     Header h;                  /*!< Package header. */
@@ -121,6 +129,8 @@ struct rpmtei_s {
     int oc;            /*!< iterator index. */
 };
 
+#endif /* _RPMTE_INTERNAL */
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -146,7 +156,7 @@ rpmte rpmteFree(/*@only@*/ /*@null@*/ rpmte te)
  * @return             new transaction element
  */
 /*@only@*/ /*@null@*/
-rpmte rpmteNew(const rpmts ts, Header h, rpmTransactionType type,
+rpmte rpmteNew(const rpmts ts, Header h, rpmElementType type,
                /*@exposed@*/ /*@dependent@*/ /*@null@*/ fnpyKey key,
                /*@null@*/ rpmRelocation * relocs,
                int dboffset,
@@ -158,7 +168,7 @@ rpmte rpmteNew(const rpmts ts, Header h, rpmTransactionType type,
  * @param te           transaction element
  * @return             type
  */
-rpmTransactionType rpmteType(rpmte te)
+rpmElementType rpmteType(rpmte te)
        /*@*/;
 
 /**
@@ -488,7 +498,7 @@ rpmtei XrpmteiInit(rpmts ts,
  * @return             next transaction element of type, NULL on termination
  */
 /*@dependent@*/ /*@null@*/
-rpmte rpmteiNext(rpmtei tei, rpmTransactionType type)
+rpmte rpmteiNext(rpmtei tei, rpmElementType type)
         /*@modifies tei @*/;
 
 #ifdef __cplusplus
index a5def14..3f9873a 100644 (file)
 #include "rpmds.h"
 #include "rpmfi.h"
 #include "rpmal.h"
+
+#define        _RPMTE_INTERNAL         /* XXX te->h */
 #include "rpmte.h"
+
+#define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
 /* XXX FIXME: merge with existing (broken?) tests in system.h */
@@ -411,13 +415,9 @@ int rpmtsSetVerifySigFlags(rpmts ts, int vsflags)
     return ret;
 }
 
-const char * rpmtsGetRootDir(rpmts ts)
+const char * rpmtsRootDir(rpmts ts)
 {
-    const char * rootDir = NULL;
-    if (ts != NULL) {
-       rootDir = ts->rootDir;
-    }
-    return rootDir;
+    return (ts != NULL ? ts->rootDir : NULL);
 }
 
 void rpmtsSetRootDir(rpmts ts, const char * rootDir)
@@ -548,7 +548,7 @@ int rpmtsInitDSI(const rpmts ts)
     int rc;
     int i;
 
-    if (ts->ignoreSet & RPMPROB_FILTER_DISKSPACE)
+    if (rpmtsFilterFlags(ts) & RPMPROB_FILTER_DISKSPACE)
        return 0;
 
     rc = rpmGetFilesystemList(&ts->filesystems, &ts->filesystemCount);
@@ -702,18 +702,56 @@ void rpmtsCheckDSIProblems(const rpmts ts, const rpmte te)
     ps = rpmpsFree(ps);
 }
 
-rpmtsFlags rpmtsGetFlags(rpmts ts)
+void * rpmtsNotify(rpmts ts, rpmte te,
+               rpmCallbackType what, unsigned long amount, unsigned long total)
 {
-    rpmtsFlags otransFlags = 0;
-    if (ts != NULL) {
-       otransFlags = ts->transFlags;
+    void * ptr = NULL;
+    if (ts && ts->notify && te) {
+assert(!(te->type == TR_ADDED && te->h == NULL));
+       /*@-type@*/ /* FIX: cast? */
+       /*@-noeffectuncon @*/ /* FIX: check rc */
+       ptr = ts->notify(te->h, what, amount, total,
+                       rpmteKey(te), ts->notifyData);
+       /*@=noeffectuncon @*/
+       /*@=type@*/
     }
-    return otransFlags;
+    return ptr;
+}
+
+int rpmtsNElements(rpmts ts)
+{
+    int nelements = 0;
+    if (ts != NULL && ts->order != NULL) {
+       nelements = ts->orderCount;
+    }
+    return nelements;
+}
+
+rpmte rpmtsElement(rpmts ts, int ix)
+{
+    rpmte te = NULL;
+    if (ts != NULL && ts->order != NULL) {
+       if (ix >= 0 && ix < ts->orderCount)
+           te = ts->order[ix];
+    }
+    /*@-compdef@*/
+    return te;
+    /*@=compdef@*/
+}
+
+rpmprobFilterFlags rpmtsFilterFlags(rpmts ts)
+{
+    return (ts != NULL ? ts->ignoreSet : 0);
+}
+
+rpmtransFlags rpmtsFlags(rpmts ts)
+{
+    return (ts != NULL ? ts->transFlags : 0);
 }
 
-rpmtsFlags rpmtsSetFlags(rpmts ts, rpmtsFlags transFlags)
+rpmtransFlags rpmtsSetFlags(rpmts ts, rpmtransFlags transFlags)
 {
-    rpmtsFlags otransFlags = 0;
+    rpmtransFlags otransFlags = 0;
     if (ts != NULL) {
        otransFlags = ts->transFlags;
        ts->transFlags = transFlags;
index c07d606..57095ef 100644 (file)
 extern int _ts_debug;
 /*@=exportlocal@*/
 
+#define        _RPMTS_VSF_NODIGESTS            (1 << 0)
+#define        _RPMTS_VSF_NOSIGNATURES         (1 << 1)
+#define        _RPMTS_VSF_VERIFY_LEGACY        (1 << 2)
+
+#if defined(_RPMTS_INTERNAL)
+
 /*@unchecked@*/
 /*@-exportlocal@*/
 extern int _cacheDependsRC;
@@ -55,7 +61,7 @@ typedef enum tsStage_e {
  * The set of packages to be installed/removed atomically.
  */
 struct rpmts_s {
-    rpmtsFlags transFlags;     /*!< Bit(s) to control operation. */
+    rpmtransFlags transFlags;  /*!< Bit(s) to control operation. */
     tsmStage goal;             /*!< Transaction goal (i.e. mode) */
 
 /*@null@*/
@@ -122,9 +128,6 @@ struct rpmts_s {
     int nodigests;             /*!< Verify digests? */
     int nosignatures;          /*!< Verify signatures? */
     int vsflags;               /*!< Signature verification flags. */
-#define        _RPMTS_VSF_NODIGESTS            (1 << 0)
-#define        _RPMTS_VSF_NOSIGNATURES         (1 << 1)
-#define        _RPMTS_VSF_VERIFY_LEGACY        (1 << 2)
 
 /*@observer@*/ /*@dependent@*/ /*@null@*/
     const char * fn;           /*!< Current package fn. */
@@ -144,6 +147,7 @@ struct rpmts_s {
 /*@refs@*/ int nrefs;          /*!< Reference count. */
 
 };
+#endif /* _RPMTS_INTERNAL */
 
 #ifdef __cplusplus
 extern "C" {
@@ -326,7 +330,7 @@ int rpmtsSetVerifySigFlags(rpmts ts, int vsflags)
  * @return             transaction rootDir
  */
 /*@observer@*/ /*@null@*/
-const char * rpmtsGetRootDir(rpmts ts)
+const char * rpmtsRootDir(rpmts ts)
        /*@*/;
 
 /** \ingroup rpmts
@@ -445,12 +449,51 @@ void rpmtsUpdateDSI(const rpmts ts, dev_t dev,
 void rpmtsCheckDSIProblems(const rpmts ts, const rpmte te)
        /*@modifies ts @*/;
 
+/**
+ * Perform transaction progress notify callback.
+ * @param ts           transaction set
+ * @param te           current transaction element
+ * @param what         type of call back
+ * @param amount       current value
+ * @param total                final value
+ * @return             callback dependent pointer
+ */
+/*@null@*/
+void * rpmtsNotify(rpmts ts, rpmte te,
+                rpmCallbackType what, unsigned long amount, unsigned long total)
+       /*@*/;
+
+/**
+ * Return number of (ordered) transaction set elements.
+ * @param ts           transaction set
+ * @return             no. of transaction set elements
+ */
+int rpmtsNElements(rpmts ts)
+       /*@*/;
+
+/**
+ * Return (ordered) transaction set element.
+ * @param ts           transaction set
+ * @param ix           transaction element index
+ * @return             transaction element
+ */
+rpmte rpmtsElement(rpmts ts, int ix)
+       /*@*/;
+
+/** \ingroup rpmts
+ * Get problem ignore bit mask, i.e. bits to filter encountered problems.
+ * @param ts           transaction set
+ * @return             ignore bit mask
+ */
+rpmprobFilterFlags rpmtsFilterFlags(rpmts ts)
+       /*@*/;
+
 /** \ingroup rpmts
  * Get transaction flags, i.e. bits that control rpmtsRun().
  * @param ts           transaction set
  * @return             transaction flags
  */
-rpmtsFlags rpmtsGetFlags(rpmts ts)
+rpmtransFlags rpmtsFlags(rpmts ts)
        /*@*/;
 
 /** \ingroup rpmts
@@ -459,7 +502,7 @@ rpmtsFlags rpmtsGetFlags(rpmts ts)
  * @param transFlags   new transaction flags
  * @return             previous transaction flags
  */
-rpmtsFlags rpmtsSetFlags(rpmts ts, rpmtsFlags transFlags)
+rpmtransFlags rpmtsSetFlags(rpmts ts, rpmtransFlags transFlags)
        /*@modifies ts @*/;
 
 /** \ingroup rpmts
index fa9c896..df5d4fc 100644 (file)
@@ -10,6 +10,7 @@
 #include "rpmdb.h"
 #include "rpmps.h"
 
+#define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
 #include "misc.h"      /* XXX for dosetenv() and makeTempFile() */
index a176a54..2f07a5b 100644 (file)
 #include "rpmps.h"
 
 #include "rpmds.h"
+
+#define        _RPMFI_INTERNAL
 #include "rpmfi.h"
+
+#define        _RPMTE_INTERNAL
 #include "rpmte.h"
+
+#define        _RPMTS_INTERNAL
 #include "rpmts.h"
 
 #include "rpmdb.h"
@@ -92,7 +98,7 @@ static fileAction decideFileFate(const rpmts ts,
         * The file doesn't exist on the disk. Create it unless the new
         * package has marked it as missingok, or allfiles is requested.
         */
-       if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_ALLFILES)
+       if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_ALLFILES)
         && (newFlags & RPMFILE_MISSINGOK))
        {
            rpmMessage(RPMMESS_DEBUG, _("%s skipped due to missingok flag\n"),
@@ -588,7 +594,7 @@ assert(otherFi->actions[otherFileNum] != FA_UNKNOWN);
 
 assert(otherFi != NULL);
            /* Mark added overlapped non-identical files as a conflict. */
-           if ((ts->ignoreSet & RPMPROB_FILTER_REPLACENEWFILES)
+           if ((rpmtsFilterFlags(ts) & RPMPROB_FILTER_REPLACENEWFILES)
             && filecmp(otherFi, fi))
            {
                rpmpsAppend(ps, RPMPROB_NEW_FILE_CONFLICT,
@@ -709,7 +715,7 @@ static void skipFiles(const rpmts ts, rpmfi fi)
        /*@globals rpmGlobalMacroContext @*/
        /*@modifies fi, rpmGlobalMacroContext @*/
 {
-    int noDocs = (rpmtsGetFlags(ts) & RPMTRANS_FLAG_NODOCS);
+    int noDocs = (rpmtsFlags(ts) & RPMTRANS_FLAG_NODOCS);
     char ** netsharedPaths = NULL;
     const char ** languages;
     const char * dn, * bn;
@@ -912,9 +918,9 @@ rpmfi rpmteiGetFi(const rpmtei tei)
 
     if (tei != NULL && tei->ocsave != -1) {
        /*@-type -abstract@*/ /* FIX: rpmte not opaque */
-       rpmte te = tei->ts->order[tei->ocsave];
+       rpmte te = rpmtsElement(tei->ts, tei->ocsave);
        /*@-assignexpose@*/
-       if ((fi = te->fi) != NULL)
+       if (te != NULL && (fi = te->fi) != NULL)
            fi->te = te;
        /*@=assignexpose@*/
        /*@=type =abstract@*/
@@ -945,14 +951,14 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
 
     /* FIXME: what if the same package is included in ts twice? */
 
-    if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOSCRIPTS)
-       (void) rpmtsSetFlags(ts, (rpmtsGetFlags(ts) | _noTransScripts | _noTransTriggers));
-    if (rpmtsGetFlags(ts) & RPMTRANS_FLAG_NOTRIGGERS)
-       (void) rpmtsSetFlags(ts, (rpmtsGetFlags(ts) | _noTransTriggers));
+    if (rpmtsFlags(ts) & RPMTRANS_FLAG_NOSCRIPTS)
+       (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) | _noTransScripts | _noTransTriggers));
+    if (rpmtsFlags(ts) & RPMTRANS_FLAG_NOTRIGGERS)
+       (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) | _noTransTriggers));
 
     /* XXX MULTILIB is broken, as packages can and do execute /sbin/ldconfig. */
-    if (rpmtsGetFlags(ts) & (RPMTRANS_FLAG_JUSTDB | RPMTRANS_FLAG_MULTILIB))
-       (void) rpmtsSetFlags(ts, (rpmtsGetFlags(ts) | _noTransScripts | _noTransTriggers));
+    if (rpmtsFlags(ts) & (RPMTRANS_FLAG_JUSTDB | RPMTRANS_FLAG_MULTILIB))
+       (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) | _noTransScripts | _noTransTriggers));
 
     ts->probs = rpmpsFree(ts->probs);
     ts->probs = rpmpsCreate();
@@ -994,21 +1000,21 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
            continue;   /* XXX can't happen */
        fc = rpmfiFC(fi);
 
-       if (!(ts->ignoreSet & RPMPROB_FILTER_IGNOREARCH))
+       if (!(rpmtsFilterFlags(ts) & RPMPROB_FILTER_IGNOREARCH))
            if (!archOkay(rpmteA(p)))
                rpmpsAppend(ps, RPMPROB_BADARCH,
                        rpmteNEVR(p), rpmteKey(p),
                        rpmteA(p), NULL,
                        NULL, 0);
 
-       if (!(ts->ignoreSet & RPMPROB_FILTER_IGNOREOS))
+       if (!(rpmtsFilterFlags(ts) & RPMPROB_FILTER_IGNOREOS))
            if (!osOkay(rpmteO(p)))
                rpmpsAppend(ps, RPMPROB_BADOS,
                        rpmteNEVR(p), rpmteKey(p),
                        rpmteO(p), NULL,
                        NULL, 0);
 
-       if (!(ts->ignoreSet & RPMPROB_FILTER_OLDPACKAGE)) {
+       if (!(rpmtsFilterFlags(ts) & RPMPROB_FILTER_OLDPACKAGE)) {
            Header h;
            mi = rpmtsInitIterator(ts, RPMTAG_NAME, rpmteN(p), 0);
            while ((h = rpmdbNextIterator(mi)) != NULL)
@@ -1017,7 +1023,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
        }
 
        /* XXX multilib should not display "already installed" problems */
-       if (!(ts->ignoreSet & RPMPROB_FILTER_REPLACEPKG) && !rpmteMultiLib(p)) {
+       if (!(rpmtsFilterFlags(ts) & RPMPROB_FILTER_REPLACEPKG) && !rpmteMultiLib(p)) {
            mi = rpmtsInitIterator(ts, RPMTAG_NAME, rpmteN(p), 0);
            xx = rpmdbSetIteratorRE(mi, RPMTAG_VERSION, RPMMIRE_DEFAULT,
                                rpmteV(p));
@@ -1095,7 +1101,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
     pi = rpmteiFree(pi);
 
     if (!rpmtsGetChrootDone(ts)) {
-       const char * rootDir = rpmtsGetRootDir(ts);
+       const char * rootDir = rpmtsRootDir(ts);
        xx = chdir("/");
        /*@-superuser -noeffect @*/
        if (rootDir != NULL)
@@ -1232,7 +1238,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
            switch (rpmteType(p)) {
            case TR_ADDED:
                xx = handleInstInstalledFiles(ts, p, fi, shared, nexti - i,
-       !(beingRemoved || (ts->ignoreSet & RPMPROB_FILTER_REPLACEOLDFILES)));
+       !(beingRemoved || (rpmtsFilterFlags(ts) & RPMPROB_FILTER_REPLACEOLDFILES)));
                /*@switchbreak@*/ break;
            case TR_REMOVED:
                if (!beingRemoved)
@@ -1291,7 +1297,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
     /* ===============================================
      * If unfiltered problems exist, free memory and return.
      */
-    if ((rpmtsGetFlags(ts) & RPMTRANS_FLAG_BUILD_PROBS)
+    if ((rpmtsFlags(ts) & RPMTRANS_FLAG_BUILD_PROBS)
      || (ts->probs->numProblems &&
                (okProbs != NULL || rpmpsTrim(ts->probs, okProbs)))
        )
@@ -1304,7 +1310,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
     /* ===============================================
      * Save removed files before erasing.
      */
-    if (rpmtsGetFlags(ts) & (RPMTRANS_FLAG_DIRSTASH | RPMTRANS_FLAG_REPACKAGE)) {
+    if (rpmtsFlags(ts) & (RPMTRANS_FLAG_DIRSTASH | RPMTRANS_FLAG_REPACKAGE)) {
        pi = rpmteiInit(ts);
        while ((p = rpmteiNext(pi, 0)) != NULL) {
            fi = rpmteiGetFi(pi);
@@ -1312,7 +1318,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
            case TR_ADDED:
                /*@switchbreak@*/ break;
            case TR_REMOVED:
-               if (!(rpmtsGetFlags(ts) & RPMTRANS_FLAG_REPACKAGE))
+               if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_REPACKAGE))
                    /*@switchbreak@*/ break;
                psm->te = p;
                psm->fi = rpmfiLink(fi, "tsRepackage");
@@ -1334,7 +1340,6 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
     /*@-branchstate@*/ /* FIX: fi reload needs work */
     while ((p = rpmteiNext(pi, 0)) != NULL) {
        alKey pkgKey;
-       Header h;
        int gotfd;
 
        gotfd = 0;
@@ -1349,7 +1354,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
            pkgKey = rpmteAddedKey(p);
 
            rpmMessage(RPMMESS_DEBUG, "========== +++ %s\n", rpmteNEVR(p));
-           h = NULL;
+           p->h = NULL;
            /*@-type@*/ /* FIX: rpmte not opaque */
            {
                /*@-noeffectuncon@*/ /* FIX: notify annotations */
@@ -1360,7 +1365,7 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet)
                    rpmRC rpmrc;
 
                    rpmrc = rpmReadPackageFile(ts, rpmteFd(p),
-                               "rpmtsRun", &h);
+                               "rpmtsRun", &p->h);
 
                    if (!(rpmrc == RPMRC_OK || rpmrc == RPMRC_BADSIZE)) {
                        /*@-noeffectuncon@*/ /* FIX: notify annotations */
@@ -1389,7 +1394,7 @@ fi->actions = NULL;
 fi->magic = RPMFIMAGIC;
 fi->te = p;
 fi->record = 0;
-                   (void) rpmfiNew(ts, fi, h, RPMTAG_BASENAMES, 1);
+                   (void) rpmfiNew(ts, fi, p->h, RPMTAG_BASENAMES, 1);
                    psm->fi = rpmfiLink(fi, "tsInstall");
 fi->fstates = _free(fi->fstates);
 fi->fstates = fstates;
@@ -1399,9 +1404,9 @@ fi->actions = actions;
 
                }
                if (rpmteMultiLib(p))
-                   (void) rpmtsSetFlags(ts, (rpmtsGetFlags(ts) | RPMTRANS_FLAG_MULTILIB));
+                   (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) | RPMTRANS_FLAG_MULTILIB));
                else
-                   (void) rpmtsSetFlags(ts, (rpmtsGetFlags(ts) & ~RPMTRANS_FLAG_MULTILIB));
+                   (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) & ~RPMTRANS_FLAG_MULTILIB));
 
                if (psmStage(psm, PSM_PKGINSTALL)) {
                    ourrc++;
@@ -1413,7 +1418,7 @@ fi->actions = actions;
                lastKey = pkgKey;
            }
 
-           h = headerFree(h, "TR_ADDED h free");
+           p->h = headerFree(p->h, "TR_ADDED h free");
 
            if (gotfd) {
                /*@-noeffectuncon @*/ /* FIX: check rc */
index 1cced4f..92d2fb2 100644 (file)
@@ -39,7 +39,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi,
     struct stat sb;
 
     /* Prepend the path to root (if specified). */
-    rootDir = rpmtsGetRootDir(ts);
+    rootDir = rpmtsRootDir(ts);
     if (rootDir && *rootDir != '\0'
      && !(rootDir[0] == '/' && rootDir[1] == '\0'))
     {
index 929d6a8..4140fe3 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -439,7 +439,7 @@ msgstr "neo
 msgid "no arguments given"
 msgstr "k dotazu nezadány ¾ádné parametry"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "Nelze otevøít doèasný soubor.\n"
 
@@ -517,180 +517,180 @@ msgstr "&& a || nen
 msgid "syntax error in expression\n"
 msgstr "chyba syntaxe ve výrazu\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK selhal: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Chybí '(' v %s %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Chybí ')' v %s(%s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Neplatný %s token: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Chybìjící %s v %s %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Následuje neprázdný znak %s(): %s\n"
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "©patná syntaxe: %s(%s)\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "©patná práva spec: %s(%s)\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "©patná práva adresáøe: %s(%s)\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Neobvyklá délka locale: \"%.*s\" v %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Duplicitní locale %.*s v %%lang(%s)\n"
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosa¾en limit pro %%docdir\n"
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Jen jeden parametr pro %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dva soubory na jednom øádku: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Soubor musí zaèínat na \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Nelze míchat speciální %%doc s ostatnímí formami: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Soubor uveden dvakrát: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Soubor nenalezen: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "©patný vlastník/skupina: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Soubor %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Soubor potøebuje úvodní \"/\": %s\n"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Soubor nenalezen globem: %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nemohu otevøít %%files soubor %s: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "øádek: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "©patný soubor: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nemohu provést fork %s: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s selhalo\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Nemohu zapsat v¹echna data do %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Hledám   %s: (pou¾it %s)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Selhalo vyhledání %s:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -724,156 +724,156 @@ msgstr "getGidS: p
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Nemohu získat jméno poèítaèe: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "vytváøení archívu selhalo na souboru %s: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "vytváøení archívu selhalo: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "zápis cpio_copy selhal: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "ètení cpio_copy selhalo: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Nemohu otevøít PreIn soubor: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Nemohu otevøít PreUn soubor: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Nemohu otevøít PostIn soubor: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Nemohu otevøít PostUn soubor: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Nemohu otevøít VerifyScript soubor: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Nemohu otevøít soubor se spu¹tí (trigger): %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otevøení %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: ètení %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek selhal: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s není RPM balíèek\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: ètení hlavièky z %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nemohu zapsat hlavièku do %s: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "©patná CSA data\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nemohu zapsat hlavièku do %s: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Generuji podpis: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nemohu otevøít cíl pro podepsání %s: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nemohu zapsat hlavièku do %s: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nemohu pøeèíst payload z %s: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Nemohu vygenerovat jméno souboru pro balíèek %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
@@ -1434,57 +1434,57 @@ msgstr ""
 msgid " failed - "
 msgstr "selhal - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "¹patný db soubor %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "¾ádné balíèky\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, 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:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr "========== ukládání tsort relací\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1492,20 +1492,20 @@ msgid ""
 msgstr ""
 "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr "SMYÈKA:\n"
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr "========== pokraèuje tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1554,47 +1554,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:320
+#: lib/fsm.c:321
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "vytvoøen adresáø %s s právy %04o.\n"
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -1604,41 +1604,41 @@ msgstr "%s vytvo
 msgid "error creating temporary file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 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:190
+#: lib/package.c:192
 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature selhalo\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Není dostupný ¾ádný podpis\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
@@ -2068,84 +2068,84 @@ msgid "generate signature"
 msgstr "generovat PGP/GPG podpis"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nemohu zapsat do %%%s %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 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:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, 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:1500
+#: lib/psm.c:1514
 #, 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:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "nesprávný formát: %s\n"
@@ -2188,8 +2188,8 @@ msgstr "bal
 msgid "can't query %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otevøení %s selhalo: %s\n"
@@ -2203,7 +2203,7 @@ msgstr "dotaz na %s se nezda
 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:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
@@ -2272,7 +2272,7 @@ msgstr "z
 msgid "record %u could not be read\n"
 msgstr "záznam %d nelze pøeèíst\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
@@ -2287,84 +2287,84 @@ msgstr "
 msgid "(added provide)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: otevøení selhalo: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile selhalo\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite selhalo: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: RPM v1.0 nelze podepsat\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: Nemohu znovu podepsat RPM v2.0\n"
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead selhalo: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature selhalo: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Není dostupný ¾ádný podpis (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "NENÍ OK"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (CHYBÍ KLÍÈ:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÙVÌRYHODNÝ KLÍÈ:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr "NE "
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr "ANO"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2373,105 +2373,105 @@ msgstr ""
 "Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, 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/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "Pøipravuji..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "Pøipravuji balíèky pro instalaci..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Stahuji %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... jako %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "pøeskakuji %s - pøenos selhal - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balíèek %s není pøemístitelný\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pøi ètení ze souboru %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "soubor %s vy¾aduje novìj¹í verzi RPM\n"
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nemù¾e být nainstalován\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "nalezeno %d zdrojových a %d binárních balíèkù\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "nevyøe¹ené závislosti:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "instaluji binární balíèky\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu otevøít soubor %s: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" urèuje více balíèkù\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaluji %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2482,81 +2482,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "ètení selhalo: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "balíèek %s je pro jinou architekturu"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "balíèek %s je pro jiný operaèní systém"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "soubor %s zpùsobuje konflikt mezi instalovaným %s a %s"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "soubor %s z instalace %s koliduje se souborem z balíèku %s"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "balíèek %s (který je novìj¹í, ne¾ %s) je ji¾ nainstalován"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "instalace balíèku %s potøebuje %ld%cB na systému souborù %s"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "instalace balíèku %s potøebuje %ld inodù na systému souborù %s"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "pøedtransakèní syscall v balíèku %s: %s selhalo: %s"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " je nutné pro %s-%s-%s\n"
@@ -2656,7 +2656,7 @@ msgstr "Nemohu 
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nemohu otevøít %s pro ètení: %s.\n"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít databázi balíèkù v %s\n"
@@ -2666,152 +2666,152 @@ msgstr "nemohu otev
 msgid "getting list of mounted filesystems\n"
 msgstr "získávám seznam pøipojených systémù souborù\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 "Pøedpokl. délka: %12d = hlavièka(%d)+signatura(%d)+výplò(%d)+data(%d)\n"
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Aktuální délka: %12d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Chybí podpis\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Starý (pouze interní) podpis! Jak jste to získali!?\n"
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Podpisu: velikost(%d)+vata(%d)\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "pgp selhalo\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "pgp selhalo pøi zápisu podpisu\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Velikost podpisu PGP: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "nemohu èíst podpis\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Pøeèteno %d bajtù PGP podpisu\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "gpg selhalo\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "gpg selhalo pøi zápisu podpisu\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Velikost GPG podpisu: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Pøeèteno %d bajtù GPG podpisu\n"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "©patná %%_signature spec v souboru maker\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru\n"
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru\n"
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "vynechat pøípadné MD5 souèty"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Chybí podpis\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Podpisu: velikost(%d)+vata(%d)\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
index 08c9959..286c813 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -434,7 +434,7 @@ msgstr "uventede parametre til --querytags "
 msgid "no arguments given"
 msgstr "ingen parametre angivet ved forespørgsel"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "Kunne ikke åbne midlertidig fil.\n"
 
@@ -512,180 +512,180 @@ msgstr "&& og || underst
 msgid "syntax error in expression\n"
 msgstr "syntaksfejl i udtryk\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK-fejl: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Manglende ')' i %s %s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ugyldigt %s-symbol: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Ikke-mellemrum efterfølger %s(): %s\n"
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Ugyldig syntaks: %s(%s)\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Ugyldig tilstandsangivelse: %s(%s)\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Ugyldig dirmode-spec: %s(%s)\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Anormal locale-længde: \"%.*s\" i %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Dobbelt locale %.*s i %%lang(%s)\n"
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Træfningsgrænse for %%docdir\n"
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Kun et parameter for %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "To filer på én linie: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Fil skal begynde med \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Kan ikke blande special-%%doc med andre former: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fil angivet to gange: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Fil passer ikke til præfiks (%s): %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke fundet: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig ejer/gruppe: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Fil kræver foranstillet \"/\": %s\n"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linie %d: Filnavn ikke tilladt: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Fil ikke fundet med glob: %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "linie: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunne ikke fraspalte ny proces til %s: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s mislykkedes\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Finder %s: (benytter %s)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Kunne ikke finde %s:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Gennemløber filer: %s-%s-%s\n"
@@ -721,156 +721,156 @@ msgstr "getGnameS: for mange gid'er\n"
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Kunne ikke kanonisere værtsnavn: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy-skrivning mislykkedes: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy-læsning mislykkedes: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Kunne ikke åbne 'PreIn'-fil: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Kunne ikke åbne 'PreUn'-fil: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Kunne ikke åbne 'PostIn'-fil: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Kunne ikke åbne 'PostUn'-fil: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Kunne ikke åbne 'VerifyScript'-fil: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Kunne ikke åbne skriptfilen Trigger: %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: åbn %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: læs %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s er ikke nogen RPM-pakke\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: læser hoved fra %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Kunne ikke skrive hoved til %s: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "Ugyldige CSA-data\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Kunne ikke skrive hoved til %s: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Genererer signatur: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Kunne ikke åbne sigtarget %s: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Kunne ikke skrive hoved til %s: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Kunne ikke læse pakkeindhold fra %s: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Kunne ikke generere filnavn til oprettelse af pakke %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "kan ikke oprette %s: %s\n"
@@ -1435,76 +1435,76 @@ msgstr ""
 msgid " failed - "
 msgstr " mislykkedes - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tilfører)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tilfører)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db tilfører)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, 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:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr "========== gemmer tsort-relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr "LØKKE:\n"
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsætter tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1553,46 +1553,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:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -1602,42 +1602,42 @@ msgstr "%s oprettet som %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "fejl ved oprettelse af midlertidig fil %s\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 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:190
+#: lib/package.c:192
 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature mislykkedes\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen tilgængelig signatur\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
@@ -2082,86 +2082,86 @@ msgid "generate signature"
 msgstr "generér PGP/GPG-signatur"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d understøttes ikke\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke oprette %s: %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kunne ikke skrive til %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ugyldigt format: %s\n"
@@ -2204,8 +2204,8 @@ msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 msgid "can't query %s: %s\n"
 msgstr "kunne ikke forespørge %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
@@ -2219,7 +2219,7 @@ msgstr "foresp
 msgid "old format source packages cannot be queried\n"
 msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakker udløser %s\n"
@@ -2288,7 +2288,7 @@ msgstr "pakkens post-nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %d kunne ikke læses\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
@@ -2303,85 +2303,85 @@ msgstr "ugyldig db-fil %s\n"
 msgid "(added provide)"
 msgstr "%s: %-45s JA (db tilfører)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: åbning mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile mislykkedes\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Kan ikke underskrive v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: Kan ikke genunderskrive v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature mislykkedes: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen tilgængelig signatur (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "IKKE O.K."
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (MANGLENDE NØGLER:    "
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (IKKE-BETROEDE NØGLER:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "O.K."
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 #, fuzzy
 msgid "NO "
 msgstr "IKKE O.K."
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2390,105 +2390,105 @@ msgstr ""
 "\"B\"-afhængighed kræver en epoke (antager samme som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "Forbereder..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker til installation..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "overspringer %s - overførsel mislykkedes - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke omrokeres\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fejl ved læsning fra filen %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, 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:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kunne ikke installeres\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fandt %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kunne ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" angiver flere pakker\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjernelse af disse pakker ville bryde afhængighederne:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2499,82 +2499,82 @@ msgid "read failed: %s (%d)\n"
 msgstr "læsning mislykkedes: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "pakken %s hører til en anden arkitektur"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "pakken %s hører til et andet operativsystem"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sti %s i pakke %s kan ikke omrokeres"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "filen %s skaber konflikt mellem den forsøgte installation af %s og %s"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "filen %s fra installationen af %s skaber konflikt med fil fra pakken %s"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "pakke %s (som er nyere end %s) er allerede installeret"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "installation af pakke %s kræver %ld%cb på %s-filsystemet"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "installation af pakken %s kræver %ld inode'r på %s-filsystemet"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "pakke %s prætransaktion-systemkald: %s mislykkedes: %s"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ukendt fejl %d under arbejdet med pakken %s"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " skaber konflikt med %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " kræves af %s-%s-%s\n"
@@ -2676,7 +2676,7 @@ 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:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
@@ -2686,151 +2686,151 @@ msgstr "kunne ikke 
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterede filsystemer\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen er ikke regulær -- overspringer størrelsestjek\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, 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:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Faktisk størrelse: %12d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Gammel PGP-signatur\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 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:233
+#: lib/signature.c:234
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Signaturstørrelse: %d\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "pgp fejlede\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "pgp kunne ikke skrive signatur\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP-signaturstørrelse: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "kunne ikke læse signaturen\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fik %d byte af PGP-signatur\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "gpg fejlede\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "gpg kunne ikke skrive signaturen\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG-signaturstørrelse: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Hovedstørrelse er for stor"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "overspring eventuelle MD5-signaturer"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signaturfyld : %d\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
index 5c5e213..7436542 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -500,7 +500,7 @@ msgid "no arguments given"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
 # , c-format
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
@@ -583,192 +583,192 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr "? im Ausdruck erwartet"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "fehlende { nach %{"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "fehlender ':' bei %s:%d"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "fehlende { nach %{"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
 # , c-format
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/files.c:2689
+#: build/files.c:2694
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -803,170 +803,170 @@ msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
 # , c-format
-#: build/pack.c:294
+#: build/pack.c:295
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/pack.c:304
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "Fehler: %s scheint zu keinem RPM-Paket zu gehören\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
 # , c-format
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "PGP-Signatur generieren"
 
 # , c-format
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -1568,78 +1568,78 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
 # , c-format
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
 # FIXME
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, 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:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1691,47 +1691,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -1741,45 +1741,45 @@ msgstr "kann Datei %s nicht 
 msgid "error creating temporary file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, 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:190
+#: lib/package.c:192
 #, 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
@@ -2246,87 +2246,87 @@ msgid "generate signature"
 msgstr "PGP-Signatur generieren"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "Keine Stufen ausführen"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "Fehler beim Format %s\n"
@@ -2371,8 +2371,8 @@ msgstr "Paket hat keinen Namen"
 msgid "can't query %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
@@ -2386,7 +2386,7 @@ msgstr "Anfrage von %s fehlgeschlagen\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "kein Paket triggert %s\n"
@@ -2459,7 +2459,7 @@ msgstr "ung
 msgid "record %u could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
@@ -2475,195 +2475,195 @@ msgstr "
 msgid "(added provide)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Kann v1.0-RPM nicht signieren\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (FEHLENDE SCHLüSSEL)"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
 # , c-format
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
 # oder besser: "... verletzen" ?
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
@@ -2674,85 +2674,85 @@ msgid "read failed: %s (%d)\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr " steht im Konflikt mit %s-%s-%s\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " steht im Konflikt mit %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " wird von %s-%s-%s gebraucht\n"
@@ -2855,7 +2855,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
@@ -2865,158 +2865,158 @@ msgstr "Fehler: kann nicht 
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-Signatur generieren"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, 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:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp fehlgeschlagen"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nicht möglich, die Signatur zu lesen"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "pgp fehlgeschlagen"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "alle MD5-Signaturen überspringen"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
index b50bf3c..5ce605a 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -447,7 +447,7 @@ msgstr "--querytags: odottamattomia parametrej
 msgid "no arguments given"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "En voi avata %s luettavaksi: %s."
@@ -528,180 +528,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "puuttuva ':', %s:%d"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp epäonnistui"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "en voinut avata %s: %s"
@@ -735,156 +735,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "virhe: %s ei vaikuta RPM paketilta\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -1460,76 +1460,76 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "kysele kaikki paketit"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1578,46 +1578,46 @@ msgstr "en voinut avata %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -1627,45 +1627,45 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "error creating temporary file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, 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:190
+#: lib/package.c:192
 #, 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
@@ -2129,85 +2129,85 @@ msgid "generate signature"
 msgstr "generoi PGP-allekirjoitus"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "virhe formaatissa: %s\n"
@@ -2252,8 +2252,8 @@ msgstr "paketilla ei ole nime
 msgid "can't query %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
@@ -2267,7 +2267,7 @@ msgstr "%s:n kysely ei onnistunut\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
@@ -2337,7 +2337,7 @@ msgstr "virheellinen paketin numero: %s\n"
 msgid "record %u could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
@@ -2352,193 +2352,193 @@ msgstr "en voinut avata %s: %s"
 msgid "(added provide)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr "(PUUTTUVAT AVAIMET)"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "asennukselle ei määritelty paketteja"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "poistolle ei määritelty paketteja"
@@ -2549,81 +2549,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "luku epäonnistui: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr "vaatii %s-%s-%s\n"
@@ -2723,7 +2723,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "En voi avata %s luettavaksi: %s."
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
@@ -2733,158 +2733,158 @@ msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, 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:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp epäonnistui"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "en voinut lukea allekirjoitusta"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "pgp epäonnistui"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ohita MD5-allekirjoitukset"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
index 72f57c2..4549ef2 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -478,7 +478,7 @@ msgstr ""
 msgid "no arguments given"
 msgstr "aucun argument n'a t fourni pour la requte"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -554,180 +554,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "La construction a chou.\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -761,156 +761,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "      --sign            - genre une signature PGP"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1491,73 +1491,73 @@ msgstr ""
 msgid " failed - "
 msgstr "La construction a chou.\n"
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, 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:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1604,46 +1604,46 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1653,41 +1653,41 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2167,86 +2167,86 @@ msgid "generate signature"
 msgstr "      --sign            - genre une signature PGP"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2291,8 +2291,8 @@ msgstr "aucun package n'a t spcifi pour l'installation"
 msgid "can't query %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "La construction a chou.\n"
@@ -2306,7 +2306,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2376,7 +2376,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2390,191 +2390,191 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "La construction a chou.\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
@@ -2585,80 +2585,80 @@ msgid "read failed: %s (%d)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "conflicts with"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "is needed by"
 msgstr ""
 
@@ -2757,7 +2757,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2767,155 +2767,155 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "La construction a chou.\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "La construction a chou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 024959c..fca7bdf 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -423,7 +423,7 @@ msgstr ""
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr ""
 
@@ -498,180 +498,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -705,152 +705,152 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr ""
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr ""
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr ""
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr ""
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:479
+#: build/pack.c:480
 msgid "Unable to create immutable header region.\n"
 msgstr ""
 
-#: build/pack.c:498
+#: build/pack.c:499
 msgid "Unable to write temp header\n"
 msgstr ""
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 msgid "Unable to write final header\n"
 msgstr ""
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:583
 msgid "Unable to reload signature header.\n"
 msgstr ""
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr ""
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1404,71 +1404,71 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1515,46 +1515,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1564,41 +1564,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2007,84 +2007,84 @@ msgid "generate signature"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2127,8 +2127,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2142,7 +2142,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2211,7 +2211,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2224,188 +2224,188 @@ msgstr ""
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2416,80 +2416,80 @@ msgid "read failed: %s (%d)\n"
 msgstr ""
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "conflicts with"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "is needed by"
 msgstr ""
 
@@ -2588,7 +2588,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
@@ -2598,148 +2598,148 @@ msgstr ""
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index bad679d..6ba740e 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -425,7 +425,7 @@ msgstr ""
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "Get ekki opnað tempi skrá.\n"
 
@@ -500,180 +500,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "vantar ')' í %s %s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ógilt %s tákn: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Tvær skrár á einni línu: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Skráin er tvítekin: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Skráin fannst ekki: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Skrá %s: %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Skráin fannst ekki með 'glob': %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Gat ekki opnað %%files skrána %s: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "lína: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ógild skrá %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Gat ekki búið til undirferli (fork) %s: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s brást\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "gat ekki ritað öll gögn í %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "gat ekki fundið %s:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -707,156 +707,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "safnskráarsmíð brást á skrá %s: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "safnskráarsmíð brást: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Gat ekki opnað PreIn skrá: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Gat ekki opnað PostIn skrá: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Gat ekki opnað PostUn skrá: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Get ekki opnað VerifyScript skrá: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Gat ekki ritað haus í %s: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Gat ekki ritað haus í %s: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Get ekki opnað sigtarget %s: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Gat ekki ritað haus í %s: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Get ekki lesið innihald %s: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1411,72 +1411,72 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "uppfæra pakka"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1523,46 +1523,46 @@ msgstr "gat ekki opna
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -1572,41 +1572,41 @@ msgstr "%s b
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2025,84 +2025,84 @@ msgid "generate signature"
 msgstr "búa til undirskrift"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "get ekki ritað í %%%s %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2145,8 +2145,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2160,7 +2160,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
@@ -2229,7 +2229,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2242,189 +2242,189 @@ msgstr ""
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "gat ekki útbúið pakkaskilyrði:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,80 +2435,80 @@ msgid "read failed: %s (%d)\n"
 msgstr ""
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "conflicts with"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "is needed by"
 msgstr ""
 
@@ -2607,7 +2607,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Get ekki opnað %s til lesturs: %s.\n"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
@@ -2617,148 +2617,148 @@ msgstr "get ekki opna
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "pgp brást\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "pgp gat ekki lesið undirskriftina\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "get ekki lesið undirskriftina\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "ggp brást\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "gpg get ekki lesið undirskriftina\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index a5eee4e..0cb4113 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -457,7 +457,7 @@ msgstr "--querytags 
 msgid "no arguments given"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó"
@@ -545,180 +545,180 @@ msgstr "&& 
 msgid "syntax error in expression\n"
 msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK ¼ºÇÔ: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó %s(%s "
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "̵¸ú¤Ê %s ¤Î¥È¡¼¥¯¥ó: %s"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: build/files.c:548
+#: build/files.c:553
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() ¤Ë³¤¯¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "ÉÔÀµ¤Êʸˡ: %s(%s)"
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "ÉÔÀµ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
 
-#: build/files.c:759
+#: build/files.c:764
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "°Û¾ï¤Ê¥í¥«¡¼¥ëĹ: \"%.*s\"  %%lang(%s)"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Ê£¿ô¤Î¥í¥«¡¼¥ë %.*s %%lang(%s)"
 
-#: build/files.c:927
+#: build/files.c:932
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdir ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿"
 
-#: build/files.c:933
+#: build/files.c:938
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir ¤Î°ú¿ô¤Ï1¤Ä¤Î¤ß¤Ç¤¹"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "1¹Ô¤Ë2¤Ä¤Î¥Õ¥¡¥¤¥ë: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï \"/\" ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:989
+#: build/files.c:994
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "¾¤Î¥Õ¥©¡¼¥à¤ÇÆÃÊ̤ʠ%%doc ¤òº®¤¼¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s ¼ºÇÔ"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
@@ -752,157 +752,157 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "¥Û¥¹¥È̾¤òÀµ¼°¤Ê¤â¤Î¤Ë¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy ¤Ç½ñ¤­¹þ¤ß¼ºÇÔ: %s"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy ¤ÇÆɤ߹þ¤ß¼ºÇÔ: %s"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "PreIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "PreUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "PostIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "PostUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "VerifyScript ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "¥È¥ê¥¬¡¼¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: %s ¤Î¥ª¡¼¥×¥ó: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: %s ¤ÎÆɤ߹þ¤ß: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: %s ¤«¤é¤Î¥Ø¥Ã¥À¤ÎÆɤ߹þ¤ß\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:508
+#: build/pack.c:509
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "ÉÔÀµ¤Ê CSA ¥Ç¡¼¥¿"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "½ð̾¤ÎÀ¸À®Ãæ: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "sigtarget ¤ÎÆɤ߹þ¤ß¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Î ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
@@ -1483,76 +1483,76 @@ msgstr ""
 msgid " failed - "
 msgstr "¼ºÇÔ - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1601,46 +1601,46 @@ msgstr "%s 
 msgid "file %s is on an unknown device\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -1650,45 +1650,45 @@ msgstr "
 msgid "error creating temporary file %s\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:190
+#: lib/package.c:192
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
@@ -2163,87 +2163,87 @@ msgid "generate signature"
 msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
@@ -2287,8 +2287,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
@@ -2302,7 +2302,7 @@ msgstr "%s 
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
@@ -2372,7 +2372,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
@@ -2387,86 +2387,86 @@ msgstr "
 msgid "(added provide)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: v1.0 ¤Î RPM ¤Ë¤Ï½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (¥­¡¼¤Îʶ¼º) "
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (¿®Íê¤Ç¤­¤Ê¤¤¸°:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2475,106 +2475,106 @@ msgstr ""
 "\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2585,90 +2585,90 @@ msgid "read failed: %s (%d)\n"
 msgstr "Æɤ߹þ¤ß¤Î¼ºÇÔ: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã¸þ¤±¤Ç¤¹"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë OS ¸þ¤±¤Ç¤¹"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, fuzzy, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 "¥Õ¥¡¥¤¥ë %s ¤Ï %s-%s-%s ¤È %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "%s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤«¤é¤Î¥Õ¥¡¥¤¥ë %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤«¤é¤Î¥Õ¥¡¥¤¥ë"
 "¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s (%s-%s-%s¤è¤ê¤â¿·¤·¤¤¤â¤Î) ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ"
 "¤¹"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å"
 "¤Ç)"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å"
 "¤Ç)"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " %s-%s-%s ¤È¶¥¹ç¤·¤Þ¤¹\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr "¤Ï %s-%s-%s ¤ËɬÍפȤµ¤ì¤Æ¤¤¤Þ¤¹\n"
@@ -2768,7 +2768,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
@@ -2778,158 +2778,158 @@ msgstr "%s/packages.rpm 
 msgid "getting list of mounted filesystems\n"
 msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 "¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "¸Å¤¤ PGP ½ð̾\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾!  ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?"
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp ¼ºÇÔ"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg ¼ºÇÔ"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, fuzzy, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "MD5 ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
index d3091fe..663fbe2 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-0400\n"
 "PO-Revision-Date: 2001-09-07 22:03+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
@@ -434,7 +434,7 @@ msgstr "--querytags 
 msgid "no arguments given"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "ÀӽàÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù.\n"
 
@@ -512,180 +512,180 @@ msgstr "'&&' 
 msgid "syntax error in expression\n"
 msgstr "Ç¥Çö½Ä¿¡¼­ ±¸¹® ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK ½ÇÆÐ: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s %s ¿¡¼­ '(' ¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "%s(%s ¿¡¼­ ')' ¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "ºÎÀûÇÕÇÑ %s ÅäÅ«: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%2$s %3$s ¿¡¼­ %1$s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() ´ÙÀ½¿¡ °ø¹éÀÌ ¾øÀ½: %s\n"
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "À߸øµÈ ±¸¹®: %s(%s)\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "À߸øµÈ ¸ðµå spec: %s(%s)\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "À߸øµÈ dir¸ðµå spec: %s(%s)\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "ºñÁ¤»óÀûÀΠ·ÎÄÉÀÏÀÇ ±æÀÌ: %%lang(%2$s) ÀÇ \"%1$.*s\"\n"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "%%lang(%2$s) ¿¡ Áߺ¹µÈ ·ÎÄÉÀÏ %1$.*s (ÀÌ)°¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdirÀÌ ÇÑ°è¿¡ À̸£·¶½À´Ï´Ù\n"
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir¿¡´Â ÇϳªÀÇ Àμö¸¸ ÁöÁ¤µÉ ¼ö ÀÖ½À´Ï´Ù\n"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "ÇϳªÀÇ ÁÙ¿¡ µÎ°³ÀÇ ÆÄÀÏÀÌ Á¸ÀçÇÔ: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "ÆÄÀÏÀº ¹Ýµå½Ã \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "ƯÁ¤ %%docÀ» ´Ù¸¥ Çü½Ä°ú ÇÔ²² »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "ÆÄÀÏ ¸ñ·ÏÀÌ Áߺ¹µÊ: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "BuildRoot¿¡ ½Éº¼¸¯¸µÅ©ÇÔ: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "ÆÄÀÏÀÌ prefix (%s) (¿Í)°ú ÀÏÄ¡ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "ÆÄÀÏ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "globÀ¸·Î ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "ÁÙ(line): %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s (À»)¸¦ fork ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s ¿¡ ¸ðµç ÀڷḦ ±â·ÏÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s (À»)¸¦ Ã£´Â Áß: (%s »ç¿ë)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s (À»)¸¦ Ã£´Âµ¥ ½ÇÆÐÇÔ:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ÆÄÀϠ󸮠Áß: %s-%s-%s\n"
@@ -719,152 +719,152 @@ msgstr "
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "È£½ºÆ® ¸íÀ» Á¤±ÔÈ­(canonicalize) ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "%s ÆÄÀÏ¿¡ ¾ÆÄ«À̺긦 »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "¾ÆÄ«À̺꠻ý¼º¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy ÀÛ¼º¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy Àб⿡ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "PreIn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "PreUn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "PostIn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "PostUn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "VerifyScript ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Æ®¸®°Å ½ºÅ©¸³Æ® ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "RPM Àбâ(readRPM): %s (À»)¸¦ ¿±´Ï´Ù: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "RPM Àбâ(readRPM): %s (À»)¸¦ ÀнÀ´Ï´Ù: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "RPM Àбâ(readRPM): %s (Àº)´Â RPM ÆÐÅ°Áö°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "RPM Àбâ(readRPM): %s ¿¡¼­ Çì´õ¸¦ Àаí ÀÖ½À´Ï´Ù\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 msgid "Unable to create immutable header region.\n"
 msgstr "°íÁ¤ Çì´õ ¿µ¿ª(immutable header region)À» »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 msgid "Unable to write temp header\n"
 msgstr "ÀÓ½Ã(temp) Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "À߸øµÈ CSA µ¥ÀÌÅÍ\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 msgid "Unable to write final header\n"
 msgstr "¸¶Áö¸·(final) Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "¼­¸í »ý¼º Áß: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 msgid "Unable to reload signature header.\n"
 msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "¼­¸íÇÒ ´ë»ó %s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "%s ÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "%s ¿¡ Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "%s ÀÇ payload¸¦ ÀÐÀ» ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "%s ÆÐÅ°ÁöÀÇ Ãâ·Â ÆÄÀϸíÀ» »ý¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "%s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -1425,57 +1425,57 @@ msgstr "
 msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "À߸øµÈ db ÆÄÀÏ    %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1483,20 +1483,20 @@ msgid ""
 msgstr ""
 "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, ±íÀÌ[depth])\n"
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÈÄÀÓÀÚ [successors only] (Ç¥Çö ¼ø)\n"
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr "·çÇÁ(LOOP):\n"
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1545,47 +1545,47 @@ msgstr "%s (
 msgid "file %s is on an unknown device\n"
 msgstr "%s ÆÄÀÏÀÌ ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -1595,42 +1595,42 @@ msgstr "%s (
 msgid "error creating temporary file %s\n"
 msgstr "ÀӽàÆÄÀÏ %s (À»)¸¦ »ý¼ºÇϴ µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ÀÌ RPM ¹öÀü¿¡¼­´Â ÆÐŰ¡ ¹öÀü '1' ÀÌ Áö¿øµÇÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "ÀÌ RPM ¹öÀü¿¡¼­´Â ÁÖ¿ä ¹øÈ£(major number) <= 4 ÀÇ ÆÐŰ¡ ¸¸À» Áö¿øÇÕ´Ï´Ù\n"
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
@@ -2062,90 +2062,90 @@ msgid "generate signature"
 msgstr "¼­¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇϽǠ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ¿ä±¸µË´Ï´Ù, ¹ÙÀ̳ʸ®¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s (ÀÌ)°¡ %d ÀÇ ÆÄÀÏÀ» °®°í ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ®¸´(scriptlet)°¡ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s (À»)¸¦ »ý·«ÇÕ´Ï"
 "´Ù\n"
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
@@ -2188,8 +2188,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "%s (À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s (À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -2203,7 +2203,7 @@ msgstr "%s (
 msgid "old format source packages cannot be queried\n"
 msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s (À»)¸¦ ¹ß»ý½ÃÅ°´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
@@ -2272,7 +2272,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "±â·Ï(record) ¹øÈ£ %u (Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö´Â ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
@@ -2287,84 +2287,84 @@ msgstr "
 msgid "(added provide)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: ¿©´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: v1.0 RPMÀº ¼­¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: v2.0 RPMÀº Àç-¼­¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "¿Ã¹Ù¸£Áö ¾ÊÀ½"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (Å°¸¦ Ã£À» ¼ö ¾øÀ½:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (Å°¸¦ ½Å·ÚÇÒ ¼ö ¾øÀ½:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "È®ÀÎ"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr "¾Æ´Ï¿À"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr "¿¹"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2373,105 +2373,105 @@ msgstr ""
 "\"B\" ÀÇÁ¸¼ºÀº Áß¿ä½Ã µÇ´Â °Í(epoch)À» ÇÊ¿ä·Î ÇÕ´Ï´Ù (\"A\" ·Î °¡Á¤ÇÕ´Ï´Ù)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "Áغñ Áß..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s (À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... %s (À¸)·Î\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s (À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s ÆÄÀÏÀÌ ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s (Àº)´Â ¼³Ä¡µÉ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ÀÇ ¼Ò½º¿Í %d ÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÀÌ ÆÐÅ°ÁöµéÀ» Á¦°ÅÇϸé ÀÇÁ¸¼ºÀÌ ±úÁú ¼ö ÀÖÀ½:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s (À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2482,87 +2482,87 @@ msgid "read failed: %s (%d)\n"
 msgstr "Àдµ¥ ½ÇÆÐÇÔ: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "%s (Àº)´Â ´Ù¸¥ ¾ÆÅ°ÅØÃĸ¦ À§ÇÑ ÆÐÅ°ÁöÀÔ´Ï´Ù"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "%s (Àº)´Â ´Ù¸¥ ¿î¿µÃ¼Á¦¸¦ À§ÇÑ ÆÐÅ°ÁöÀÔ´Ï´Ù"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "%2$s ÆÐÅ°Áö ¾ÈÀÇ %1$s °æ·Î´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "%2$s (¿Í)°ú %3$s ÀÇ ¼³Ä¡ °úÁ¤¿¡¼­ %1$s ÆÄÀÏÀÌ ¼­·Î Ãæµ¹ÇÕ´Ï´Ù"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "%2$s ¿¡¼­ ¼³Ä¡µÇ´Â %1$s ÆÄÀÏÀº %3$s ÆÐÅ°ÁöÀÇ ÆÄÀÏ°ú Ãæµ¹ÇÕ´Ï´Ù"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "%s ÆÐÅ°Áö (%s º¸´Ù ÃÖ½ÅÀÇ ÆÐÅ°Áö)´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 "%4$s ÆÄÀϽýºÅÛ »ó¿¡¼­ %1$s ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ °æ¿ì¿¡´Â %2$ld%3$cb (ÀÌ)°¡ ÇÊ¿äÇÕ"
 "´Ï´Ù"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 "%3$s ÆÄÀϽýºÅÛ »ó¿¡¼­ %1$s ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ °æ¿ì¿¡´Â %2$ld ÀÇ ¾ÆÀ̳ëµå(inode)"
 "°¡ ÇÊ¿äÇÕ´Ï´Ù"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 "%s ÆÐÅ°ÁöÀÇ ¼±(pre)-Æ®·£Àè¼Ç ½Ã½ºÅÛÄÝ(syscall): %s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù: %s"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 "%2$s ÆÐÅ°Áö¸¦ Ã³¸®Çϴ °úÁ¤¿¡¼­ ¾Ë ¼ö ¾ø´Â ¿À·ù %1$d (ÀÌ)°¡ ¹ß»ýÇß½À´Ï´Ù"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " %s-%s-%s (¿Í)°ú Ãæµ¹ÇÕ´Ï´Ù\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " (Àº)´Â %s-%s-%s ¿¡¼­ ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
@@ -2662,7 +2662,7 @@ msgstr "%s (
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
@@ -2672,151 +2672,151 @@ msgstr "%s 
 msgid "getting list of mounted filesystems\n"
 msgstr "¸¶¿îÆ®µÈ ÆÄÀϽýºÅÛÀÇ ¸ñ·ÏÀ» ¼öÁýÇÏ°í ÀÖ½À´Ï´Ù\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÆÄÀÏÀÌ ¿Ã¹Ù¸£Áö(regular) ¾Ê½À´Ï´Ù -- ¿ë·® °Ë»ç¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, 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:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr " ½ÇÁ¦ ¿ë·®: %12d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "ÀÌÀü PGP ¼­¸í\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼­¸í!  ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n"
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "pgp¿¡ ½ÇÆÐÇÔ\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "pgp ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ¼­¸í ¿ë·®: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "¼­¸íÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼­¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "gpg¿¡ ½ÇÆÐÇÔ\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "gpg ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ¼­¸í ¿ë·®: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_gpg_name\" À» ¼³Á¤ÇØ ÁּžߠÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_pgp_name\" À» ¼³Á¤ÇØ ÁּžߠÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "MD5 ¼­¸íÀº °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
index d396a0b..14c5b3c 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -433,7 +433,7 @@ msgstr "uventede argumenter til --querytags "
 msgid "no arguments given"
 msgstr "ingen argumenter oppgitt for spørring"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
@@ -511,180 +511,180 @@ msgstr "&& og || ikke st
 msgid "syntax error in expression\n"
 msgstr "syntaksfeil i uttrykk\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIDSJEKK feil: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Mangler ')' i %s(%s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ugyldig %s-tegn: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "To filer på én linje: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Filen må begynne med \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Kan ikke blande spesiell %%doc med andre skjema: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fil listet to ganger: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke funnet: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig eier/gruppe: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Fil %s: %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linje %d: Filnavn ikke tillatt: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "Installerer %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s feilet\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Klarte ikke å finne %s:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -718,156 +718,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "feil under oppretting av arkiv %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy skriving feilet: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy: feil under lesing: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Kunne ikke åpne PreIn-fil: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Kunne ikke åpne PreUn-fil: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Kunne ikke åpne PostIn-fil: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Kunne ikke åpne PostUn-fil: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Kunne ikke åpne VerifyScript-fil: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek feilet: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s er ikke en RPM-pakke\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: leser header fra %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Kunne ikke skrive header til %s: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "Ugyldige CSA-data\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Kunne ikke skrive header til %s: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Genererer signatur: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Kunne ikke åpne sigmål %s: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Kunne ikke skrive header til %s: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1426,72 +1426,72 @@ msgstr ""
 msgid " failed - "
 msgstr " feilet - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakke %s er allerede installert"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1538,46 +1538,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:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -1587,41 +1587,41 @@ msgstr "%s opprettet som %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "feil under oppretting av midlertidig fil %s\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature feilet\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tilgjengelig\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
@@ -2048,84 +2048,84 @@ msgid "generate signature"
 msgstr "generer signatur"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d ikke støttet\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke opprette %%%s %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan ikke skrive til %%%s %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ukorrekt format: %s\n"
@@ -2168,8 +2168,8 @@ msgstr "pakken har verken fileier eller id-lister\n"
 msgid "can't query %s: %s\n"
 msgstr "kan ikke spørre på %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "feil under åpning av %s: %s\n"
@@ -2183,7 +2183,7 @@ msgstr "sp
 msgid "old format source packages cannot be queried\n"
 msgstr "kildepakker i gammelt format kan ikke spørres\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakke utløser %s\n"
@@ -2252,7 +2252,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
@@ -2265,189 +2265,189 @@ msgstr ""
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: åpne feilet: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile feilet\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite feilet: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: kan ikke signere v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead feilet: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature feilet: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tilgjengelig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "IKKE OK"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr "NEI"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr "JA"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "Forbereder..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker for installasjon..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Henter %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hopper over %s - overføring feilet - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, 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:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2458,81 +2458,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "lesing feilet: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "pakke %s er for en annen arkitektur"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "pakke %s er for et annet operativsystem"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "pakke %s er allerede installert"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sti %s i pakke %s kan ikke relokeres"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " er i konflikt med %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " kreves av %s-%s-%s\n"
@@ -2632,7 +2632,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
@@ -2642,150 +2642,150 @@ msgstr "kan ikke 
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterte filsystemer\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "For stor header"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "hopp over MD5-signaturer"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
index 2a0c948..e38c9b3 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -448,7 +448,7 @@ msgstr "nieoczekiwane argumenty dla --querytags "
 msgid "no arguments given"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Nie mo¿na otworzyæ pliku tymczasowego"
@@ -536,180 +536,180 @@ msgstr "&& i || nie jest wspierane dla 
 msgid "syntax error in expression\n"
 msgstr "b³±d sk³adni w wyra¿eniu"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK nie powiod³o siê: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Brak '(' w %s %s"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Brak ')' w %s(%s"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "B³êdny znak %s: %s"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Brak '(' w %s %s"
 
-#: build/files.c:548
+#: build/files.c:553
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Brak bia³ego znaku po %s(): %s"
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "B³êdna sk³adnia: %s(%s)"
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "B³êdne okre¶lenie trybu: %s(%s)"
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "B³êdne okre¶lenie dirmode: %s(%s)"
 
-#: build/files.c:759
+#: build/files.c:764
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Niespotykana d³ugo¶æ okre¶lenia lokalizacji \"%.*s\" w %%lang(%s)"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)"
 
-#: build/files.c:927
+#: build/files.c:932
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Limit trafieñ dla %%docdir"
 
-#: build/files.c:933
+#: build/files.c:938
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Tylko jeden argument dla %%docdir"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dwa pliki w jedenj linii: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:989
+#: build/files.c:994
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Nie mo¿na mieszaæ specjalnej %%doc z innymi formami: %s"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Plik podany dwukrotnie: %s"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Plik %4d: 0%o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linia %d: Wersja niedozwolona: %s"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "linia: %s"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "plik %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie mo¿na wykonaæ fork na %s"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s nie powiod³o siê"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Wyszukiwanie wymaganych zasobów...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Wyszukiwanie nie powiod³o siê"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s\n"
@@ -743,157 +743,157 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Nie mo¿na rozwi±zaæ nazwy systemu: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "zapis w trybie cpio_copy nie powiód³ siê: %s"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "odczyt w trybie cpio_copy nie powiód³ siê: %s"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PreIn: %s"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PreUn: %s"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PostIn: %s"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PostUn: %s"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku VerifyScript: %s"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Nie mo¿na otworzyæ skryptu Trigger: %s"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otwieranie %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: czytanie %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s nie jest pakietem RPM\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: czytanie nag³ówka z %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nie mo¿na zapisaæ %s"
 
-#: build/pack.c:508
+#: build/pack.c:509
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "B³êdne dane CSA"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nie mo¿na zapisaæ %s"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Generowanie sygnatury: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nie mo¿na odczytaæ sigtarget: %s"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Nie mo¿na wygenerowaæ wyj¶ciowej nazwy dla pakietu %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "nie mo¿na utworzyæ %s"
@@ -1466,76 +1466,76 @@ msgstr ""
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "Udostêpniane zasoby:"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1584,46 +1584,46 @@ msgstr "nie mo
 msgid "file %s is on an unknown device\n"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linia %d: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
@@ -1633,45 +1633,45 @@ msgstr "ostrze
 msgid "error creating temporary file %s\n"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, 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:190
+#: lib/package.c:192
 #, 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Sygnatura nie jest dostêpna\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
@@ -2128,86 +2128,86 @@ msgid "generate signature"
 msgstr "generuj sygnaturê PGP/GPG"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, 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:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, 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:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "b³±d w formacie: %s\n"
@@ -2251,8 +2251,8 @@ msgstr "pakiet nie ma ani w
 msgid "can't query %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
@@ -2266,7 +2266,7 @@ msgstr "odpytywanie %s nie powiod
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
@@ -2336,7 +2336,7 @@ msgstr "numer rekordu pakietu: %d\n"
 msgid "record %u could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
@@ -2351,192 +2351,192 @@ msgstr "b
 msgid "(added provide)"
 msgstr "Udostêpniane zasoby:"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Open nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, 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:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "NIE DOBRZE"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (BRAK KLUCZY:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr "(NIEWIARYGODNE KLUCZE:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 #, fuzzy
 msgid "NO "
 msgstr "NIE DOBRZE"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, fuzzy, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "       rpm {--version}"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, 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/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM\n"
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, 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:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2547,83 +2547,83 @@ msgid "read failed: %s (%d)\n"
 msgstr "odczyt nie powiód³ siê: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 "pakiet %s-%s-%s (który jest nowszy ni¿ %s-%s-%s) jest ju¿ zainstalowany"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " jest w konflikcie z %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " jest wymagany przez %s-%s-%s\n"
@@ -2723,7 +2723,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
@@ -2733,157 +2733,157 @@ msgstr "nie mo
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Stara sygnatura PGP\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, 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:233
+#: lib/signature.c:234
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp nie powiod³o siê"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "rozmiar sygnatury PGP: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nie mo¿na odczytaæ sygnatury"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Mam %d bajtów sygnatury PGP\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg nie powiod³o siê"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "rozmiar sygnatury GPG: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "pomiñ wszelkie sygnatury MD5"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
index ac687ee..3bc816a 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-0400\n"
 
 #: build.c:40
 #, fuzzy
@@ -476,7 +476,7 @@ msgid "no arguments given"
 msgstr "no foi passado argumento para pesquisa"
 
 # , c-format
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "No consegui abrir: %s\n"
@@ -561,196 +561,196 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
 # , c-format
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -785,180 +785,180 @@ msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:294
+#: build/pack.c:295
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:304
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "gere assinatura PGP"
 
 # , c-format
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1578,75 +1578,75 @@ msgstr ""
 msgid " failed - "
 msgstr "Construo falhou.\n"
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "pesquise todos os pacotes"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1696,50 +1696,50 @@ msgstr "No consegui abrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1750,43 +1750,43 @@ msgstr "No consegui abrir: %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
 # , c-format
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
 # , c-format
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2252,88 +2252,88 @@ msgid "generate signature"
 msgstr "gere assinatura PGP"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "no execute nenhum estgio"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2379,8 +2379,8 @@ msgstr "no foi passado pacote para instalao"
 msgid "can't query %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "Construo falhou.\n"
@@ -2394,7 +2394,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "no foram passados pacotes para assinatura"
@@ -2465,7 +2465,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
@@ -2481,110 +2481,110 @@ msgid "(added provide)"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "no foi passado pacote para instalao"
@@ -2597,90 +2597,90 @@ 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:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lista dependncias do pacote"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 #, fuzzy
 msgid "removing these packages would break dependencies:\n"
 msgstr "lista dependncias do pacote"
 
 # , c-format
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "no foi passado pacote para desinstalao"
@@ -2692,80 +2692,80 @@ msgid "read failed: %s (%d)\n"
 msgstr "No consegui abrir: %s\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "conflicts with"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "is needed by"
 msgstr ""
 
@@ -2871,7 +2871,7 @@ msgid "Unable to open %s for reading: %s.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2881,151 +2881,151 @@ msgstr "No consegui abrir: %s\n"
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 # , c-format
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "Construo falhou.\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "Construo falhou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "desconsidere quaisquer assinaturas MD5"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3039,7 +3039,7 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
index fdbe379..a07329d 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -423,7 +423,7 @@ msgstr ""
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr ""
 
@@ -498,180 +498,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -705,152 +705,152 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr ""
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr ""
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr ""
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr ""
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:479
+#: build/pack.c:480
 msgid "Unable to create immutable header region.\n"
 msgstr ""
 
-#: build/pack.c:498
+#: build/pack.c:499
 msgid "Unable to write temp header\n"
 msgstr ""
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 msgid "Unable to write final header\n"
 msgstr ""
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:583
 msgid "Unable to reload signature header.\n"
 msgstr ""
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr ""
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1404,71 +1404,71 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1515,46 +1515,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1564,41 +1564,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2007,84 +2007,84 @@ msgid "generate signature"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2127,8 +2127,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2142,7 +2142,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2211,7 +2211,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2224,188 +2224,188 @@ msgstr ""
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2416,80 +2416,80 @@ msgid "read failed: %s (%d)\n"
 msgstr ""
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "conflicts with"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "is needed by"
 msgstr ""
 
@@ -2588,7 +2588,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
@@ -2598,148 +2598,148 @@ msgstr ""
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 7d8f2aa..21cbab8 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -429,7 +429,7 @@ msgstr ""
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr ""
 
@@ -504,180 +504,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -711,152 +711,152 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr ""
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr ""
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr ""
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr ""
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:479
+#: build/pack.c:480
 msgid "Unable to create immutable header region.\n"
 msgstr ""
 
-#: build/pack.c:498
+#: build/pack.c:499
 msgid "Unable to write temp header\n"
 msgstr ""
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 msgid "Unable to write final header\n"
 msgstr ""
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:583
 msgid "Unable to reload signature header.\n"
 msgstr ""
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr ""
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1410,71 +1410,71 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1521,46 +1521,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1570,41 +1570,41 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
@@ -2013,84 +2013,84 @@ msgid "generate signature"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2133,8 +2133,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2148,7 +2148,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2217,7 +2217,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2230,188 +2230,188 @@ msgstr ""
 msgid "(added provide)"
 msgstr ""
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2422,80 +2422,80 @@ msgid "read failed: %s (%d)\n"
 msgstr ""
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "conflicts with"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 msgid "is needed by"
 msgstr ""
 
@@ -2594,7 +2594,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
@@ -2604,148 +2604,148 @@ msgstr ""
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index f91cd0c..88ae699 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-0400\n"
 "PO-Revision-Date: 2001-08-29 13:55-0400\n"
 "Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
 "Language-Team:  Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -446,7 +446,7 @@ msgstr "
 msgid "no arguments given"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ.\n"
 
@@ -524,180 +524,180 @@ msgstr "&& 
 msgid "syntax error in expression\n"
 msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "ïÛÉÂËÁ TIMECHECK: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s(%s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅΠ%s: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ %s × %s %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "îÅ ÐÒÏÂÅÌ ÓÌÅÄÕÅÔ ÐÏÓÌÅ %s(): %s\n"
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ: %s(%s)\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á: %s(%s)\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(%s)\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)\n"
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÙÛÅÎ\n"
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "ôÏÌØËÏ ÏÄÉΠÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "ä×Á ÆÁÊÌÁ × ÏÄÎÏÊ ÓÔÒÏËÅ: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "æÁÊÌ ÕËÁÚÁΠÄ×ÁÖÄÙ: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "ÓÔÒÏËÁ: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@@ -731,152 +731,152 @@ msgstr "getGidS: 
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÑ ËÏÍÐØÀÔÅÒÁ: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy: ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy: ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreIn: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreUn: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostIn: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostUn: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ VerifyScript: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ Trigger script: %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: ÏÔËÒÙÔÉÅ %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: ÞÔÅÎÉÅ %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fseek: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s  ÎÅ Ñ×ÌÑÅÔÓÑ ÐÁËÅÔÏÍ RPM\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: ÞÉÔÁÅÔÓÑ ÚÁÇÏÌÏ×ÏË ÉÚ %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 msgid "Unable to create immutable header region.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÍÅÓÔÉÔØ ÚÁÇÏÌÏ×ÏË × ÎÅÒÐÅÒÙ×ÎÕÀ ÏÂÌÁÓÔØ ÐÁÍÑÔÉ.\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 msgid "Unable to write temp header\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ×ÒÅÍÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "îÅ×ÅÒÎÙÅ ÄÁÎÎÙÅ CSA\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 msgid "Unable to write final header\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÏËÏÎÞÁÔÅÌØÎÙÊ ÚÁÇÏÌÏ×ÏË\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 msgid "Unable to reload signature header.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ.\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÇÏÌÏ×ÏË ÉÚ %s: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÚÁÇÏÌÏ×ÏË × %s: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÉÚ %s: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
@@ -1443,57 +1443,57 @@ msgstr "
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s YES (rpmrc provides)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s YES (rpmlib provides)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s YES (db provides)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1502,20 +1502,20 @@ msgstr ""
 "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
 "ÇÌÕÂÉÎÁ)\n"
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr "ãéëì:\n"
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1564,47 +1564,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -1614,41 +1614,41 @@ msgstr "%s 
 msgid "error creating temporary file %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ÐÁËÅÔÙ ×ÅÒÓÉÉ 1 ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÜÔÏÊ ×ÅÒÓÉÅÊ RPM\n"
 
-#: lib/package.c:190
+#: lib/package.c:192
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4\n"
 
-#: lib/package.c:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
@@ -2081,84 +2081,84 @@ msgid "generate signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
@@ -2201,8 +2201,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@@ -2216,7 +2216,7 @@ msgstr "
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
@@ -2285,7 +2285,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
@@ -2300,84 +2300,84 @@ msgstr "
 msgid "(added provide)"
 msgstr "%s: %-45s YES (db provides)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "ÏÛÉÂËÁ makeTempFile\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fwrite: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ writeLead: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ rpmWriteSignature: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "îå Oë"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (ïôóõôóô÷õàô ëìàþé:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (îåô äï÷åòéñ ë ëìàþáí:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "Oë"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr "îåT"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr "äá"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2386,105 +2386,105 @@ msgstr ""
 "ÄÌÑ ÚÁ×ÉÓÉÍÏÓÔÉ \"B\" ÎÕÖÎÏ ÕËÁÚÁÔØ \"epoch\" (ÔÁË ÖÅ ËÁË ÄÌÑ \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ ÐÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2495,81 +2495,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "ÐÕÔØ %s × ÐÁËÅÔÅ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s É %s"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "ÆÁÊÌ %s ÉÚ ÕÓÔÁÎÏ×ÌÅÎÎÏÇÏ ÐÁËÅÔÁ %s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "ÐÁËÅÔ %s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld%cb ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld inodes ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "ÐÁËÅÔ %s pre-transaction syscall(s): %s: ÏÛÉÂËÁ: %s"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " ÎÕÖÅΠÄÌÑ %s-%s-%s\n"
@@ -2669,7 +2669,7 @@ msgstr "
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
@@ -2679,152 +2679,152 @@ msgstr "
 msgid "getting list of mounted filesystems\n"
 msgstr "ÐÏÌÕÞÅÎÉÅ ÓÐÉÓËÁ ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÎÅÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, 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:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "æÁËÔÉÞÅÓËÉÊ ÒÁÚÍÅÒ: %12d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "óÔÁÒÁÑ ÐÏÄÐÉÓØ PGP\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n"
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "ÏÛÉÂËÁ pgp\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "ÏÛÉÂËÁ gpg\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
index ffae233..fd0ab50 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -445,7 +445,7 @@ msgstr "neo
 msgid "no arguments given"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Nie je mo¾né otvori» doèasný súbor"
@@ -533,180 +533,180 @@ msgstr "&& a || nie s
 msgid "syntax error in expression\n"
 msgstr "chyba syntaxe vo výraze"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "chyba PREKROÈENIA ÈASU: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Chybný %s prvok: %s"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Chybná %s() syntax: %s"
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Chybná ¹pecifikácia práv %s(): %s"
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
 
-#: build/files.c:759
+#: build/files.c:764
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
-#: build/files.c:927
+#: build/files.c:932
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosiahnutý limit pre %%docdir"
 
-#: build/files.c:933
+#: build/files.c:938
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Iba jeden argument pre %%docdir"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dva súbory na riadku: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Súbory musia zaèína» znakom \"/\": %s"
 
-#: build/files.c:989
+#: build/files.c:994
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Nie je mo¾né mie¹a» ¹peciálne %%doc s inými formami: %s"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Súbor zadaný dvakrát: %s."
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Súbor nesúhlasí s prefixom (%s): %s."
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "riadok: %s"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "súbor %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie je mo¾né vytvori» proces %s"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s zlyhalo"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
@@ -740,157 +740,157 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Nie je mo¾né kanonizova» názov poèítaèa: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy zápis zlyhal: %s"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy èítanie zlyhalo: %s"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Nie je mo¾né otvori» PreIn súbor: %s"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Nie je mo¾né otvori» PreUn súbor: %s"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Nie je mo¾né otvori» PostIn súbor: %s"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Nie je mo¾né otvori» PostUn súbor: %s"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Nie je mo¾né otvori» VerifyScript súbor: %s"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Nie je mo¾né otvori» Trigger skriptový súbor: %s"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otvorenie %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: èítanie %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s nie je RPM balík\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: èítanie hlavièky %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nie je mo¾né zapísa» %s"
 
-#: build/pack.c:508
+#: build/pack.c:509
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "Chybné CSA dáta"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nie je mo¾né zapísa» %s"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Vytvára sa PGP podpis: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nie je preèíta» sigtarget: %s"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Nie je mo¾né vytvori» meno výstupného súboru pre balík %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
@@ -1464,76 +1464,76 @@ msgstr ""
 msgid " failed - "
 msgstr " zlyhalo - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, 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:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "Poskytuje:"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, 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:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1582,46 +1582,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:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -1631,43 +1631,43 @@ msgstr "varovanie: %s vytvoren
 msgid "error creating temporary file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, 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:190
+#: lib/package.c:192
 #, 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis nie je k dispozícii\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
@@ -2126,86 +2126,86 @@ msgid "generate signature"
 msgstr "vytvori» PGP/GPG podpis"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:898
+#: lib/psm.c:908
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "chyba formátu: %s\n"
@@ -2249,8 +2249,8 @@ msgstr "bal
 msgid "can't query %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
@@ -2264,7 +2264,7 @@ msgstr "ot
 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:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
@@ -2334,7 +2334,7 @@ msgstr "po
 msgid "record %u could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
@@ -2349,192 +2349,192 @@ msgstr "chybn
 msgid "(added provide)"
 msgstr "Poskytuje:"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: otvorenie zlyhalo\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, 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:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, 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:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "NIE JE V PORIADKU"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (CHÝBAJÚCE K¥ÚÈE):"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "V PORIADKU"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 #, fuzzy
 msgid "NO "
 msgstr "NIE JE V PORIADKU"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, fuzzy, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "          rpm {--version}"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, 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:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2545,81 +2545,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "èítanie zlyhalo: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " je vy¾adované %s-%s-%s\n"
@@ -2719,7 +2719,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
@@ -2729,157 +2729,157 @@ msgstr "nie je mo
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, 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:233
+#: lib/signature.c:234
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp zlyhalo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Veµkos» PGP podpisu: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nie je mo¾né preèíta» podpis"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg zlyhalo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Veµkos» GPG podpisu: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Priveµká hlavièka"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "vynecha» akékoµvek MD5 podpisy"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
index 91df19f..e8614fe 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.245 2002/05/19 18:43:14 jbj Exp $
+# $Id: sl.po,v 1.246 2002/05/19 23:37:33 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -444,7 +444,7 @@ msgstr "nepri
 msgid "no arguments given"
 msgstr "argumenti za poizvedbo niso podani"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Zaèasne datoteke ni mo¾no odpreti"
@@ -532,180 +532,180 @@ msgstr "&& in || nista podprta za nize"
 msgid "syntax error in expression\n"
 msgstr "napaka v sklanji izraza"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK neuspe¹en: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Manjkajoèi ,)` v %s(%s"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Neveljaven ¾eton %s: %s"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: build/files.c:548
+#: build/files.c:553
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Neprazen znak sledi %s(): %s"
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Nepravilna skladnja: %s(%s)"
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Nepravilno doloèilo naèina: %s(%s)"
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Nepravilno doloèilo naèina imenika: %s(%s)"
 
-#: build/files.c:759
+#: build/files.c:764
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Nenavadna dol¾ina za locale: \"%.s\" pri %%lang(%s)"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Podvojeni locale %.*s za %%lang(%s)"
 
-#: build/files.c:927
+#: build/files.c:932
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosegli smo omejitev za %%docdir"
 
-#: build/files.c:933
+#: build/files.c:938
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Za %%docdir je podan samo en argument"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dve datoteki v eni vrstici: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Ime datoteke se mora zaèeti z \"/\": %s"
 
-#: build/files.c:989
+#: build/files.c:994
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Posebnih %%doc ni mo¾no me¹ati z ostalimi oblikami: %s"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Datoteka je navedena dvakrat: %s"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, fuzzy, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Datoteka se ne ujema s predpono (%s): %s"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteke ni mogoèe najti: %s"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Neobstojeè lastnik/skupina: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Datoteki manjka uvodni \"/\": %s"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "vrstica %d: Razlièica ni dovoljena: %s"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "vrstica: %s"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Po¹kodovana datoteka: %s: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Vejitev %s ni mo¾na: %s"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s neuspe¹en"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "pisanje podatkov v %s je bilo neuspe¹no"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Iskanje  %s: (z uporabo %s)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Neuspe¹no iskanje %s:"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -739,157 +739,157 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Iskanje kanoniènega imena gostitelja je bilo neuspe¹no: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspe¹no: %s"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspe¹no: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "pisanje cpio_copy neuspe¹no: %s"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "branje cpio_copy neuspe¹no: %s"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Datoteke PreIn ni mo¾no odpreti: %s"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Datoteke PreUn ni mo¾no odpreti: %s"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Datoteke PostIn ni mo¾no odpreti: %s"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Datoteke PostUn ni mo¾no odpreti: %s"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Datoteke VerifyScript ni mo¾no odpreti: %s"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Skriptne datoteke Trigger ni mo¾no odpreti: %s"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: odpiranje %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: branje %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s ni paket tipa RPM\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: branje glave %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:508
+#: build/pack.c:509
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "Po¹kodovani podatki CSA"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Izdelujemo podpis: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Ciljnega podpisa %s ni mo¾no odpreti: %s"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Neuspe¹no ustvarjanje izhodne datoteke za paket %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
@@ -1466,76 +1466,76 @@ msgstr ""
 msgid " failed - "
 msgstr " neuspe¹no - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, 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:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "ni paketov\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1584,46 +1584,46 @@ msgstr "neuspe
 msgid "file %s is on an unknown device\n"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -1633,43 +1633,43 @@ msgstr "opozorilo: %s ustvarjen kot %s"
 msgid "error creating temporary file %s\n"
 msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, 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:190
+#: lib/package.c:192
 #, 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature je bil neuspe¹en\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis ni na voljo\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
@@ -2125,86 +2125,86 @@ msgid "generate signature"
 msgstr "izdelava podpisa PGP/GPG"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "pisanje na %s ni mo¾no"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, 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:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "napaka v obliki: %s\n"
@@ -2248,8 +2248,8 @@ msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 msgid "can't query %s: %s\n"
 msgstr "ni mo¾no poizvedeti o %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
@@ -2263,7 +2263,7 @@ msgstr "poizvedba po %s je bila neuspe
 msgid "old format source packages cannot be queried\n"
 msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "noben paket ne pro¾i %s\n"
@@ -2333,7 +2333,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
@@ -2348,85 +2348,85 @@ msgstr "po
 msgid "(added provide)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: odpiranje je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile je bil neuspe¹en\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: pisanje Fwrite je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Podpis RPM v1.0 ni mo¾en\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead je bil neuspe¹en: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature je bilo neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "NI DOBRO"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (MANJKAJOÈI KLJUÈI:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEPREVERJENI KLJUÈI:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "V REDU"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 #, fuzzy
 msgid "NO "
 msgstr "NI DOBRO"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2435,106 +2435,106 @@ msgstr ""
 "odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "paketi za namestitev niso navedeni"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketa %s ni mo¾no premakniti\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, 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:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "name¹èanje binarnih paketov\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veè paketov\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èanje %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2545,82 +2545,82 @@ msgid "read failed: %s (%d)\n"
 msgstr "branje je bilo neuspe¹no: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paket %s-%s-%s je za drug tip arhitekture"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paket %s-%s-%s je za drug operacijski sistem"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paketa %s ni mo¾no prestaviti\n"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, fuzzy, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "datoteka %s je v sporu med poskusom namestitve %s in %s"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "datoteka %s name¹èena z %s-%s-%s je v sporu z datoteko iz paketa %s-%s-%s"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paket %s-%s-%s (ki je novej¹i kot %s-%s-%s) je ¾e name¹èen"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "paket %s pred-prenosljivih sistemskih klicov: %s ni uspelo: %s"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " je v sporu z %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " potrebuje %s-%s-%s\n"
@@ -2720,7 +2720,7 @@ msgstr "Ni mo
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s ni mo¾no odpreti za branje: %s."
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
@@ -2730,157 +2730,157 @@ msgstr "zbirko podatkov paketov ni mo
 msgid "getting list of mounted filesystems\n"
 msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Stari podpis PGP\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, 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:233
+#: lib/signature.c:234
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp je bil neuspe¹en"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp je bil neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Dol¾. podpisa PGP: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "branje podpisa je bilo neuspe¹no"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Prebrano %d bajtov podpisa PGP\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg je bil neuspe¹en"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg je boil neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Dol¾. podpisa GnuPG: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Neveljaven %%_signature v makro-datoteki.\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:757
+#: lib/signature.c:758
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Glava je predolga"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "preskoèi vse podpise MD5"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
index b0eccaf..51e7bd0 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -440,7 +440,7 @@ msgstr "neo
 msgid "no arguments given"
 msgstr "nedostaju argumenti za upit"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
@@ -521,180 +521,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr "oèekivan znak ? u izrazu"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "nedostaje { posle %"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "nedostaje ':' na %s:%d"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "nedostaje { posle %"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:586
+#: build/files.c:591
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:596
+#: build/files.c:601
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:608
+#: build/files.c:613
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:976
+#: build/files.c:981
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Ne mogu da proèitam 'sigtarget'"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "PGP omanuo"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -728,156 +728,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "gre¹ka: èini se da %s nije RPM paket\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "napravi PGP potpis"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -1453,76 +1453,76 @@ msgstr ""
 msgid " failed - "
 msgstr "PGP omanuo"
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "upit nad svim paketima"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, 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:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1571,46 +1571,46 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:320
+#: lib/fsm.c:321
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -1620,43 +1620,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:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 #, 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:190
+#: lib/package.c:192
 #, 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
@@ -2120,85 +2120,85 @@ msgid "generate signature"
 msgstr "napravi PGP potpis"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
@@ -2243,8 +2243,8 @@ msgstr "paket nema imena"
 msgid "can't query %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
@@ -2258,7 +2258,7 @@ msgstr "upit nad %s neuspeo\n"
 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:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
@@ -2328,7 +2328,7 @@ msgstr "pogre
 msgid "record %u could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
@@ -2343,193 +2343,193 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "(added provide)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, 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:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr ""
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nedostaje paket za instalaciju"
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "neodstaje paket za deinstalaciju"
@@ -2540,81 +2540,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr " se sudara sa %s-%s-%s\n"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " se sudara sa %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " je potreban paketu %s-%s-%s\n"
@@ -2714,7 +2714,7 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: lib/rpmts.c:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
@@ -2724,158 +2724,158 @@ msgstr "gre
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "napravi PGP potpis"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Stari (interni) potpis!  Odakle vam!?"
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "PGP omanuo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "ne mogu da proèitam potpis"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "PGP omanuo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "preskoèi sve MD5 potpise"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
index a20d5ca..8c839aa 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-0400\n"
 "PO-Revision-Date: 2001-09-12 14:18+0200\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -437,7 +437,7 @@ msgstr "ov
 msgid "no arguments given"
 msgstr "inga parametrar angivna för fråga"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "Kan inte öppna temporär fil.\n"
 
@@ -515,180 +515,180 @@ msgstr "&& och || st
 msgid "syntax error in expression\n"
 msgstr "syntaxfel i uttryck\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK-fel: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Saknad \"(\" i %s %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Saknad \")\" i %s(%s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ogiltig %s token: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Saknad %s i %s %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Annat än blanktecken följer på %s(): %s\n"
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Felaktig syntax: %s(%s)\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Felaktig rättighetsspecifikation: %s(%s)\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Ovanlig lokallängd: \"%.*s\" i %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Duplicerad lokal %.*s i %%lang(%s)\n"
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Slog i gränsen för %%docdir\n"
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Endast ett argument till %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Två filer på en rad: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Filnamn måste börja med \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Kan inte blanda special %%doc med andra former: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Filen uppräknad två gånger: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Filen matchar inte prefixet (%s): %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Filen hittades inte: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Felaktig ägare/grupp: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Filen behöver inledande \"/\": %s\n"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Matchning inte tillåtet: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Hittade ingen fil vid matchningen: %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunde inte öppna %%files-fil %s: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "rad: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Felaktig fil: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunde inte grena %s: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s misslyckades\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunde inte skriva all data till %s\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Letar upp %s: (använder %s)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Misslyckades med att hitta %s:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -722,152 +722,152 @@ msgstr "getGidS: f
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Kunde inte kanonisera värdnamn: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "skapande av arkiv misslyckades vid fil %s: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "skapande av arkiv misslyckades: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy kunde inte skriva: %s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy kunde inte läsa: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Kunde inte öppna PreIn-fil: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Kunde inte öppna PreUn-fil: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Kunde inte öppna PostIn-fil: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Kunde inte öppna PostUn-fil: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Kunde inte öppna VerifyScript-fil: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Kunde inte öppna Trigger-skriptfil: %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: öppna %s: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: läs %s: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek misslyckades: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s är inte ett RPM-paket\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: läser huvud från %s\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 msgid "Unable to create immutable header region.\n"
 msgstr "Kan inte skapa oföränderlig huvudregion.\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 msgid "Unable to write temp header\n"
 msgstr "Kan inte skriva temporärhuvud\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "Felaktig CSA-data\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 msgid "Unable to write final header\n"
 msgstr "Kan inte skriva slutligt huvud\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Genererar signatur: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 msgid "Unable to reload signature header.\n"
 msgstr "Kan inte läsa om signaturhuvud.\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Kan inte läsa signaturen %s: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Kan inte läsa huvud från %s: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Kan inte skriva huvud till %s: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Kan inte läsa last från %s: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kan inte skriva last till %s: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Kunde inte generera utfilnamn för paketet %s: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "kan inte skapa %s: %s\n"
@@ -1428,57 +1428,57 @@ msgstr "Ingen arkivfilen i huvud"
 msgid " failed - "
 msgstr " misslyckades - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s är redan installerat"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "felaktig db-fil %s\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "inga paket\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tar bort %s-%s-%s \"%s\" från tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr "========== noterar alla relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1486,20 +1486,20 @@ msgid ""
 msgstr ""
 "========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr "========== endast efterföljare (presentationsordning)\n"
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr "LOOP:\n"
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsätter med tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1548,47 +1548,47 @@ 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:320
+#: lib/fsm.c:321
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n"
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s skapad med rättigheter %04o.\n"
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, 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:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -1598,41 +1598,41 @@ msgstr "%s skapades som %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "fel när tämporärfil %s skapades\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 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:190
+#: lib/package.c:192
 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature misslyckades\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tillgänglig\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
@@ -2064,85 +2064,85 @@ msgid "generate signature"
 msgstr "generera signatur"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan inte skapa %%%s %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan inte skriva till %%%s %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kör (eventuellt) %s-skript\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s har %d filer, test = %d\n"
 
-#: lib/psm.c:1358
+#: lib/psm.c:1370
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n"
 
-#: lib/psm.c:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "fel format: %s\n"
@@ -2185,8 +2185,8 @@ msgstr "paketet har varken fil
 msgid "can't query %s: %s\n"
 msgstr "kan inte fråga %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "misslyckades med att öppna %s: %s\n"
@@ -2200,7 +2200,7 @@ msgstr "fr
 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:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "inga paketutlösare %s\n"
@@ -2269,7 +2269,7 @@ msgstr "paketpost nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %u kunde inte läsas\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
@@ -2284,84 +2284,84 @@ msgstr "felaktig db-fil %s\n"
 msgid "(added provide)"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: open misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile misslyckades\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, fuzzy, c-format
 msgid "%s: Can't sign v1 packaging\n"
 msgstr "%s: Kan inte signera v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:178
 #, fuzzy, c-format
 msgid "%s: Can't re-sign v2 packaging\n"
 msgstr "%s: Kan inte signera om v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "EJ OK"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (SAKNADE NYCKLAR:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (EJ BETRODDA NYCKLAR:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr "NEJ "
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr "JA"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2370,105 +2370,105 @@ msgstr ""
 "\"B\"-beroendet behöver en epok (antar samma som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "Förbereder..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "Förbereder paket för installation ..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, 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:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2479,81 +2479,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "läsning misslyckades: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paket %s är för en annan arkitektur"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paket %s är för ett annat operativsystem"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "paket %s är redan installerat"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sökväg %s i paket %s är inte relokerbar"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "fil %s är en konflikt mellan installationsförsök av %s och %s"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "fil %s från installation av %s står i konflikt med filen från paket %s"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paket %s (som är nyare än %s) är redan installerat"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "installation av paket %s kräver %ld%cB på filsystem %s"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "installation av paket %s kräver %ld inoder på filsystem %s"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s systemanrop före transaktion: %s misslyckades: %s"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "okänt fel %d uppträdde under behandling av paket %s"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " står i konflikt med %s-%s-%s\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " behövs av %s-%s-%s\n"
@@ -2653,7 +2653,7 @@ 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:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
@@ -2663,153 +2663,153 @@ msgstr "kan inte 
 msgid "getting list of mounted filesystems\n"
 msgstr "hämtar lista över monterade filsystem\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, 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:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Faktisk storlek: %12d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Gammal PGP-signatur\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 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:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "pgp misslyckades\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "pgp misslyckades att skriva en signatur\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP signaturstorlek: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "kan inte läsa signaturen\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fick %d byte PGP-signatur\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "gpg misslyckades\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "gpg kunde inte skriva signatur\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG-signaturstorlek: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Felaktig %%_signature-spec i makrofil\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, 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:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Huvudstorleken för stor"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "hoppa över eventuella MD5-signaturer"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
index 8f010a5..e330812 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-05-19 14:41-0400\n"
+"POT-Creation-Date: 2002-05-19 19:37-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"
@@ -444,7 +444,7 @@ msgstr "--querytags ile beklenmeyen girdiler"
 msgid "no arguments given"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: build/build.c:125 build/pack.c:491
+#: build/build.c:125 build/pack.c:492
 msgid "Unable to open temp file.\n"
 msgstr "Geçici dosya açýlamadý.\n"
 
@@ -522,180 +522,180 @@ msgstr "&& ve || dizgelerde desteklenmez\n"
 msgid "syntax error in expression\n"
 msgstr "ifadede sözdizimi hatasý\n"
 
-#: build/files.c:274
+#: build/files.c:279
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK baþarýsýz: %s\n"
 
-#: build/files.c:336 build/files.c:532 build/files.c:721
+#: build/files.c:341 build/files.c:537 build/files.c:726
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: build/files.c:347 build/files.c:660 build/files.c:732
+#: build/files.c:352 build/files.c:665 build/files.c:737
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "%s içinde ')' yok: (%s\n"
 
-#: build/files.c:385 build/files.c:685
+#: build/files.c:390 build/files.c:690
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Andaç %s geçersiz: %s\n"
 
-#: build/files.c:493
+#: build/files.c:498
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: build/files.c:548
+#: build/files.c:553
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() boþluksuz yazýlmýþ: %s\n"
 
-#: build/files.c:586
+#: build/files.c:591
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Sözdizimi hatasý: %s(%s)\n"
 
-#: build/files.c:596
+#: build/files.c:601
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "mode spec hatalý: %s(%s)\n"
 
-#: build/files.c:608
+#: build/files.c:613
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "dirmode spec hatalý: %s(%s)\n"
 
-#: build/files.c:759
+#: build/files.c:764
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "yerel uzunluðu hatalý: \"%.*s\" (%%lang(%s))\n"
 
 #. @innercontinue@
-#: build/files.c:770
+#: build/files.c:775
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "%.*s yereli %%lang(%s) içinde tekrarlanmýþ\n"
 
-#: build/files.c:927
+#: build/files.c:932
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdir için hit sýnýrý\n"
 
-#: build/files.c:933
+#: build/files.c:938
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir için sadece tek argüman\n"
 
 #. We already got a file -- error
-#: build/files.c:961
+#: build/files.c:966
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Bir satýrda 2 dosya: %s\n"
 
-#: build/files.c:976
+#: build/files.c:981
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Dosya \"/\" ile baþlamalý: %s\n"
 
-#: build/files.c:989
+#: build/files.c:994
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Özel %%doc ile diðer formlar karýþtýrýlamaz: %s\n"
 
-#: build/files.c:1140
+#: build/files.c:1145
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Dosya iki kere gösterildi: %s\n"
 
-#: build/files.c:1284
+#: build/files.c:1289
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
 
-#: build/files.c:1526
+#: build/files.c:1531
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
 
-#: build/files.c:1550
+#: build/files.c:1555
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Dosya bulunamadý: %s\n"
 
-#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
+#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Kullanýcý/grup hatalý: %s\n"
 
-#: build/files.c:1606
+#: build/files.c:1611
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Dosya %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1715
+#: build/files.c:1720
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Dosya \"/\" ile içermeli: %s\n"
 
-#: build/files.c:1738
+#: build/files.c:1743
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
 
-#: build/files.c:1753
+#: build/files.c:1758
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
 
-#: build/files.c:1815
+#: build/files.c:1820
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
 
-#: build/files.c:1826 build/pack.c:154
+#: build/files.c:1831 build/pack.c:155
 #, c-format
 msgid "line: %s\n"
 msgstr "satýr: %s\n"
 
-#: build/files.c:2201
+#: build/files.c:2206
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Dosya hatalý: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2275
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: build/files.c:2280
+#: build/files.c:2285
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ayrýlamadý: %s\n"
 
-#: build/files.c:2364
+#: build/files.c:2369
 #, c-format
 msgid "%s failed\n"
 msgstr "%s baþarýsýz\n"
 
-#: build/files.c:2368
+#: build/files.c:2373
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "tüm veri %s içine yazýlamadý\n"
 
-#: build/files.c:2524
+#: build/files.c:2529
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s aranýyor: (%s kullanarak)...\n"
 
-#: build/files.c:2553 build/files.c:2567
+#: build/files.c:2558 build/files.c:2572
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s bulunamadý:\n"
 
-#: build/files.c:2689
+#: build/files.c:2694
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@@ -729,156 +729,156 @@ msgstr "getGidS: 
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Böyle bir makina yok: %s\n"
 
-#: build/pack.c:87
+#: build/pack.c:88
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "%s dosyasýnda arþiv oluþturulamadý: %s\n"
 
-#: build/pack.c:90
+#: build/pack.c:91
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "arþiv oluþturulamadý: %s\n"
 
-#: build/pack.c:112
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy yazma hatasý:%s\n"
 
-#: build/pack.c:119
+#: build/pack.c:120
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy okuma hatasý: %s\n"
 
-#: build/pack.c:222
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "PreIn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:229
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "PreUn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:236
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "PostIn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:244
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "PostUn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:251
+#: build/pack.c:252
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "VerifyScript dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:266
+#: build/pack.c:267
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Trigger betik dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:294
+#: build/pack.c:295
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: %s açýlýrken: %s\n"
 
-#: build/pack.c:304
+#: build/pack.c:305
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: %s okunurken: %s\n"
 
-#: build/pack.c:313 build/pack.c:537
+#: build/pack.c:314 build/pack.c:538
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek baþarýsýz: %s\n"
 
-#: build/pack.c:341
+#: build/pack.c:342
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s bir RPM paketi deðil\n"
 
-#: build/pack.c:350
+#: build/pack.c:351
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: %s baþlýðý okunuyor\n"
 
-#: build/pack.c:479
+#: build/pack.c:480
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: build/pack.c:498
+#: build/pack.c:499
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "%s'e baþlýk yazýlamadý: %s\n"
 
-#: build/pack.c:508
+#: build/pack.c:509
 msgid "Bad CSA data\n"
 msgstr "CSA verisi geçersiz\n"
 
-#: build/pack.c:544
+#: build/pack.c:545
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "%s'e baþlýk yazýlamadý: %s\n"
 
-#: build/pack.c:564
+#: build/pack.c:565
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Ýmza üretiliyor: %d\n"
 
-#: build/pack.c:582
+#: build/pack.c:583
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: build/pack.c:590
+#: build/pack.c:591
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:626 lib/psm.c:1451
+#: build/pack.c:627 lib/psm.c:1463
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
 
-#: build/pack.c:641
+#: build/pack.c:642
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "sigtarget %s açýlamadý: %s\n"
 
-#: build/pack.c:652
+#: build/pack.c:653
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: build/pack.c:666
+#: build/pack.c:667
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "%s'e baþlýk yazýlamadý: %s\n"
 
-#: build/pack.c:676
+#: build/pack.c:677
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "%s'den payload okunamadý: %s\n"
 
-#: build/pack.c:682
+#: build/pack.c:683
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:707 lib/psm.c:1739
+#: build/pack.c:708 lib/psm.c:1753
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
 
-#: build/pack.c:774
+#: build/pack.c:775
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "%s paket dosyasý için çýktý dosya adý üretilemedi: %s\n"
 
-#: build/pack.c:791
+#: build/pack.c:792
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "%s dosyasý oluþturulamýyor: %s\n"
@@ -1448,57 +1448,57 @@ msgstr ""
 msgid " failed - "
 msgstr " baþarýsýz - "
 
-#: lib/depends.c:156
+#: lib/depends.c:160
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s zaten kurulu"
 
-#: lib/depends.c:385
+#: lib/depends.c:389
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:410
+#: lib/depends.c:414
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
 
-#: lib/depends.c:426
+#: lib/depends.c:430
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
 
-#: lib/depends.c:447
+#: lib/depends.c:451
 #, fuzzy
 msgid "(db files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/depends.c:459
+#: lib/depends.c:463
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
 
-#: lib/depends.c:472
+#: lib/depends.c:476
 #, fuzzy
 msgid "(db package)"
 msgstr "paket yok\n"
 
-#: lib/depends.c:811
+#: lib/depends.c:815
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:935
 #, 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:1201
+#: lib/depends.c:1205
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort baðýntýlarý kaydediliyor\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1307
+#: lib/depends.c:1311
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1506,20 +1506,20 @@ msgid ""
 msgstr ""
 "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
 
-#: lib/depends.c:1400
+#: lib/depends.c:1404
 msgid "========== successors only (presentation order)\n"
 msgstr "========== sadece ardýllar (sunum sýrasý)\n"
 
-#: lib/depends.c:1470
+#: lib/depends.c:1474
 msgid "LOOP:\n"
 msgstr "ÇEVRÝM:\n"
 
-#: lib/depends.c:1505
+#: lib/depends.c:1509
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort sürüyor ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1510
+#: lib/depends.c:1514
 #, c-format
 msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
@@ -1568,47 +1568,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:320
+#: lib/fsm.c:321
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Pakette bulunmayan dizinler:\n"
 
-#: lib/fsm.c:322
+#: lib/fsm.c:323
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1208
+#: lib/fsm.c:1198
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
 
-#: lib/fsm.c:1499
+#: lib/fsm.c:1489
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1622 lib/fsm.c:1754
+#: lib/fsm.c:1612 lib/fsm.c:1738
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1780
+#: lib/fsm.c:1764
 #, 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:1786
+#: lib/fsm.c:1770
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1796
+#: lib/fsm.c:1780
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1816
+#: lib/fsm.c:1800
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -1618,43 +1618,43 @@ msgstr "%s %s olarak olu
 msgid "error creating temporary file %s\n"
 msgstr "%s geçici dosyasý oluþturulurken hata\n"
 
-#: lib/package.c:169 lib/rpmchecksig.c:167 lib/rpmchecksig.c:575
+#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:182
+#: lib/package.c:184
 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:190
+#: lib/package.c:192
 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:199 lib/rpmchecksig.c:185 lib/rpmchecksig.c:591
+#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature baþarýsýz\n"
 
-#: lib/package.c:203 lib/rpmchecksig.c:189 lib/rpmchecksig.c:596
+#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ýmza bulundurmuyor\n"
 
-#: lib/package.c:249 lib/rpmchecksig.c:496
+#: lib/package.c:251 lib/rpmchecksig.c:498
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:284 lib/package.c:309 lib/package.c:339 lib/rpmchecksig.c:667
+#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:351 lib/rpmchecksig.c:115 lib/rpmchecksig.c:525
+#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
@@ -2088,84 +2088,84 @@ msgid "generate signature"
 msgstr "imza üretir"
 
 #. @-modfilesys@
-#: lib/psm.c:251 rpmdb/header.c:388 rpmdb/header_internal.c:161
+#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d veri türü desteklenmiyor\n"
 
-#: lib/psm.c:449
+#: lib/psm.c:455
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:461
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s dosyasýna yazýlamaz %s\n"
 
-#: lib/psm.c:486
+#: lib/psm.c:492
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:602
+#: lib/psm.c:611
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:721
+#: lib/psm.c:731
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
 
-#: lib/psm.c:891
+#: lib/psm.c:901
 #, 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:898
+#: lib/psm.c:908
 #, 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:1238
+#: lib/psm.c:1248
 #, 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:1358
+#: lib/psm.c:1370
 #, 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:1500
+#: lib/psm.c:1514
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1509
+#: lib/psm.c:1523
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1551
+#: lib/psm.c:1565
 #, 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:1552
+#: lib/psm.c:1566
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:1747
+#: lib/psm.c:1761
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:1750
+#: lib/psm.c:1764
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
 
-#: lib/query.c:127 lib/rpmts.c:258
+#: lib/query.c:127 lib/rpmts.c:262
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "biçem yanlýþ: %s\n"
@@ -2208,8 +2208,8 @@ msgstr "paket ne dosya sahibi ne de kimlik listesi i
 msgid "can't query %s: %s\n"
 msgstr "%s sorgulanamýyor: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:361 lib/rpminstall.c:498
-#: lib/rpminstall.c:881
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
+#: lib/rpminstall.c:883
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s açýlamadý: %s\n"
@@ -2223,7 +2223,7 @@ msgstr "%s 'nin sorgulamas
 msgid "old format source packages cannot be queried\n"
 msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
 
-#: lib/query.c:664 lib/rpminstall.c:511
+#: lib/query.c:664 lib/rpminstall.c:513
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s tetikleyen paket yok\n"
@@ -2292,7 +2292,7 @@ msgstr "paket kay
 msgid "record %u could not be read\n"
 msgstr "%u. kayýt okunamadý\n"
 
-#: lib/query.c:962 lib/rpminstall.c:669
+#: lib/query.c:962 lib/rpminstall.c:671
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
@@ -2307,84 +2307,84 @@ msgstr "db dosyas
 msgid "(added provide)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
 
-#: lib/rpmchecksig.c:56
+#: lib/rpmchecksig.c:58
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: açýlamadý: %s\n"
 
-#: lib/rpmchecksig.c:68
+#: lib/rpmchecksig.c:70
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile baþarýsýz\n"
 
-#: lib/rpmchecksig.c:109
+#: lib/rpmchecksig.c:111
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:172
+#: lib/rpmchecksig.c:174
 #, 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:176
+#: lib/rpmchecksig.c:178
 #, 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:275
+#: lib/rpmchecksig.c:277
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:281
+#: lib/rpmchecksig.c:283
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature baþarýsýz: %s\n"
 
-#: lib/rpmchecksig.c:510
+#: lib/rpmchecksig.c:512
 #, fuzzy, c-format
 msgid "%s: headerGetEntry failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/rpmchecksig.c:581
+#: lib/rpmchecksig.c:583
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:826
+#: lib/rpmchecksig.c:828
 msgid "NOT OK"
 msgstr "TAMAM DEÐÝL"
 
-#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841
+#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
 msgid " (MISSING KEYS:"
 msgstr " (EKSÝK ANAHTARLAR:"
 
-#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843
+#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844
+#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
 msgid " (UNTRUSTED KEYS:"
 msgstr " (GÜVENCESÝZ ANAHTARLAR:"
 
-#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846
+#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:840
+#: lib/rpmchecksig.c:842
 msgid "OK"
 msgstr "Tamam"
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "NO "
 msgstr "HAYIR "
 
-#: lib/rpmds.c:421 lib/rpmds.c:580
+#: lib/rpmds.c:423 lib/rpmds.c:582
 msgid "YES"
 msgstr "EVET"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/rpmds.c:549
+#: lib/rpmds.c:551
 #, fuzzy, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2393,105 +2393,105 @@ msgstr ""
 "\"B\" baðýmlýlýðý bir dönemsellik gerektirir (tabii ki \"A\" da)\n"
 "\tA %s\tB %s\n"
 
-#: lib/rpmds.c:579
+#: lib/rpmds.c:581
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
 #. @=branchstate@
-#: lib/rpmds.c:603
+#: lib/rpmds.c:605
 #, fuzzy, c-format
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/rpminstall.c:163
+#: lib/rpminstall.c:165
 msgid "Preparing..."
 msgstr "Hazýrlanýyor..."
 
-#: lib/rpminstall.c:165
+#: lib/rpminstall.c:167
 msgid "Preparing packages for installation..."
 msgstr "Kurulacak paketler hazýrlanýyor..."
 
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:310
 #, 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:321
+#: lib/rpminstall.c:323
 #, c-format
 msgid " ... as %s\n"
 msgstr "... %s olarak\n"
 
-#: lib/rpminstall.c:325
+#: lib/rpminstall.c:327
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:424
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s paketi yeniden konumlandýrýlamaz\n"
 
-#: lib/rpminstall.c:472
+#: lib/rpminstall.c:474
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dosyasýndan okuma hatalý\n"
 
-#: lib/rpminstall.c:478
+#: lib/rpminstall.c:480
 #, 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:490 lib/rpminstall.c:737
+#: lib/rpminstall.c:492 lib/rpminstall.c:739
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s yüklenemedi\n"
 
-#: lib/rpminstall.c:526
+#: lib/rpminstall.c:528
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
 
-#: lib/rpminstall.c:540 lib/rpminstall.c:1068
+#: lib/rpminstall.c:542 lib/rpminstall.c:1070
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
 
-#: lib/rpminstall.c:547
+#: lib/rpminstall.c:549
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:577
+#: lib/rpminstall.c:579
 msgid "installing binary packages\n"
 msgstr "icra edilebilir paketleri kuruluyor\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:599
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamadý: %s\n"
 
-#: lib/rpminstall.c:672
+#: lib/rpminstall.c:674
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:697
+#: lib/rpminstall.c:699
 msgid "removing these packages would break dependencies:\n"
 msgstr "bu paketin silinmesi aþaðýdakilerin baðýmlýlýklarýný etkileyecektir:\n"
 
-#: lib/rpminstall.c:724
+#: lib/rpminstall.c:726
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/rpminstall.c:730
+#: lib/rpminstall.c:732
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s kuruluyor\n"
 
-#: lib/rpminstall.c:1062
+#: lib/rpminstall.c:1064
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2502,81 +2502,81 @@ msgid "read failed: %s (%d)\n"
 msgstr "okuma baþarýsýz: %s (%d)\n"
 
 #. @observer@
-#: lib/rpmps.c:208
+#: lib/rpmps.c:207
 msgid "different"
 msgstr ""
 
-#: lib/rpmps.c:216
+#: lib/rpmps.c:215
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "%s farklý bir mimari için"
 
-#: lib/rpmps.c:221
+#: lib/rpmps.c:220
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "%s farklý bir iþletim sistemi için"
 
-#: lib/rpmps.c:226
+#: lib/rpmps.c:225
 #, c-format
 msgid "package %s is already installed"
 msgstr "%s zaten kurulu"
 
-#: lib/rpmps.c:231
+#: lib/rpmps.c:230
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "%s dosya yolu %s paketinde yeniden konumlandýrýlamaz"
 
-#: lib/rpmps.c:236
+#: lib/rpmps.c:235
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "%s dosyasý kalkýþýlan %s ve %s kurulumlarý arasýnda çeliþiyor"
 
-#: lib/rpmps.c:241
+#: lib/rpmps.c:240
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "%s dosyasýnýn %s kurulumu %s kurulumundaki dosya ile çeliþiyor"
 
-#: lib/rpmps.c:246
+#: lib/rpmps.c:245
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "%s paketi zaten yüklü (%s sürümünden daha yeni)"
 
-#: lib/rpmps.c:251
+#: lib/rpmps.c:250
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "%s kurulumu %ld%cb gerektiriyor (%s dosya sisteminde)"
 
-#: lib/rpmps.c:261
+#: lib/rpmps.c:260
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "%s kurulumu %ld i-düðüm gerektiriyor (%s dosya sisteminde)"
 
-#: lib/rpmps.c:266
+#: lib/rpmps.c:265
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "%s iþlem öncesi sistem çaðrý(sý/larý): %s baþarýsýz: %s"
 
-#: lib/rpmps.c:270
+#: lib/rpmps.c:269
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/rpmps.c:274
+#: lib/rpmps.c:273
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/rpmps.c:279
+#: lib/rpmps.c:278
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "conflicts with"
 msgstr " %s-%s-%s ile çeliþiyor\n"
 
-#: lib/rpmps.c:360
+#: lib/rpmps.c:359
 #, fuzzy
 msgid "is needed by"
 msgstr " %s-%s-%s için gerekli\n"
@@ -2676,7 +2676,7 @@ 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:127 lib/rpmts.c:169
+#: lib/rpmts.c:131 lib/rpmts.c:173
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
@@ -2686,151 +2686,151 @@ msgstr "%s de Paket veritaban
 msgid "getting list of mounted filesystems\n"
 msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
 
-#: lib/signature.c:125
+#: lib/signature.c:126
 msgid "file is not regular -- skipping size check\n"
 msgstr "dosya normal deðil -- uzunluk denetimi atlanýyor\n"
 
-#: lib/signature.c:143
+#: lib/signature.c:144
 #, 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:148
+#: lib/signature.c:149
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Gerçek boyut: %12d\n"
 
-#: lib/signature.c:168
+#: lib/signature.c:169
 msgid "No signature\n"
 msgstr "Ýmza yok\n"
 
-#: lib/signature.c:172
+#: lib/signature.c:173
 msgid "Old PGP signature\n"
 msgstr "Eski PGP imzasý\n"
 
-#: lib/signature.c:183
+#: lib/signature.c:184
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Eski imza !!! Bunu nasýl aldýn!?\n"
 
-#: lib/signature.c:233
+#: lib/signature.c:234
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/signature.c:312 lib/signature.c:409 lib/signature.c:676
-#: lib/signature.c:709
+#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677
+#: lib/signature.c:710
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: lib/signature.c:328
+#: lib/signature.c:329
 msgid "pgp failed\n"
 msgstr "pgp hata verdi\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:335
+#: lib/signature.c:336
 msgid "pgp failed to write signature\n"
 msgstr "pgp imzasýnýn yazýlmasý baþarýsýz\n"
 
-#: lib/signature.c:340
+#: lib/signature.c:341
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP imza uzunluðu: %d\n"
 
-#: lib/signature.c:354 lib/signature.c:452
+#: lib/signature.c:355 lib/signature.c:453
 msgid "unable to read the signature\n"
 msgstr "imza okunamadý\n"
 
-#: lib/signature.c:359
+#: lib/signature.c:360
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "GPG imzasýnýn %d baytý alýndý\n"
 
-#: lib/signature.c:426
+#: lib/signature.c:427
 msgid "gpg failed\n"
 msgstr "gpg hata verdi\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:433
+#: lib/signature.c:434
 msgid "gpg failed to write signature\n"
 msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n"
 
-#: lib/signature.c:438
+#: lib/signature.c:439
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG imza uzunluðu: %d\n"
 
-#: lib/signature.c:457
+#: lib/signature.c:458
 #, 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:714 lib/signature.c:765
+#: lib/signature.c:715 lib/signature.c:766
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Makro dosyasýnda %%_signature spec geçersiz\n"
 
-#: lib/signature.c:744
+#: lib/signature.c:745
 #, 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:757
+#: lib/signature.c:758
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n"
 
-#: lib/signature.c:801
+#: lib/signature.c:802
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Baþlýk çok uzun"
 
-#: lib/signature.c:837
+#: lib/signature.c:838
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:886
+#: lib/signature.c:887
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1072
+#: lib/signature.c:1073
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "tüm MD5 imzalarýný atlar"
 
-#: lib/signature.c:1182
+#: lib/signature.c:1183
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1183
+#: lib/signature.c:1184
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ýmza yok\n"
 
-#: lib/signature.c:1258
+#: lib/signature.c:1259
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1285
+#: lib/signature.c:1286
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1289
+#: lib/signature.c:1290
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/transaction.c:98
+#: lib/transaction.c:104
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
 #. @innercontinue@
-#: lib/transaction.c:887
+#: lib/transaction.c:893
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
index 395fb39..a13d56b 100644 (file)
@@ -20,7 +20,9 @@
 
 #include "rpmdb.h"
 #include "rpmps.h"
-#include "rpmts.h"     /* XXX for ts->rpmdb */
+
+#define        _RPMTS_INTERNAL /* XXX for ts->rdb */
+#include "rpmts.h"
 
 #include "legacy.h"
 #include "misc.h"
index 3b4ada2..6fda8dc 100644 (file)
@@ -523,6 +523,7 @@ fi
 %changelog
 * Sun May 19 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.15
 - Grand Renaming of rpm data types.
+- fix: synthesize unpacking progress callbacks for packages w/o files.
 
 * Thu May 16 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.14
 - opaque (well mostly) rpmTransactionSet using methods.
index bee037f..18724cc 100644 (file)
@@ -68,7 +68,7 @@ do_tsort(const char *fileArgv[])
 
     ts = rpmtsCreate();
     if (!noChainsaw)
-       ts->transFlags = RPMTRANS_FLAG_CHAINSAW;
+       (void) rpmtsSetFlags(ts, rpmtsFlags(ts) | RPMTRANS_FLAG_CHAINSAW);
 
     rc = rpmtsOpenDB(ts, O_RDONLY);
     if (rc) {
@@ -230,11 +230,11 @@ restart:
     if (rc)
        goto exit;
 
-    {  rpmds requires;
-       rpmtei pi; rpmte p;
-       rpmtei qi; rpmte q;
+    {  rpmtei pi;
+       rpmte p;
+       rpmte q;
        unsigned char * selected =
-                       alloca(sizeof(*selected) * (ts->orderCount + 1));
+                       alloca(sizeof(*selected) * (rpmtsNElements(ts) + 1));
        int oType = TR_ADDED;
 
 fprintf(stdout, "digraph XXX {\n");
@@ -255,112 +255,6 @@ fprintf(stdout, "  { rank=max ; \"%s\" }\n", rpmteN(p));
        }
        pi = rpmteiFree(pi);
 
-#ifdef NOTNOW
-fprintf(stdout, "//===== Relations:\n");
-       pi = rpmteiInit(ts);
-       while ((p = rpmteiNext(pi, oType)) != NULL) {
-           int printed;
-
-           if ((requires = rpmteDS(p, RPMTAG_REQUIRENAME)) == NULL)
-               continue;
-
-           memset(selected, 0, sizeof(*selected) * ts->orderCount);
-           selected[rpmteiGetOc(pi)] = 1;
-           printed = 0;
-
-           requires = rpmdsInit(requires);
-           while (rpmdsNext(requires) >= 0) {
-               int_32 Flags;
-               const char * qName;
-               fnpyKey key;
-               alKey pkgKey;
-               int i;
-
-               Flags = rpmdsFlags(requires);
-
-               switch (rpmteType(p)) {
-               case TR_REMOVED:
-                   /* Skip if not %preun/%postun requires or legacy prereq. */
-                   if (isInstallPreReq(Flags)
-#ifdef NOTYET
-                    || !( isErasePreReq(Flags)
-                       || isLegacyPreReq(Flags) )
-#endif
-                       )
-                       /*@innercontinue@*/ continue;
-                   /*@switchbreak@*/ break;
-               case TR_ADDED:
-                   /* Skip if not %pre/%post requires or legacy prereq. */
-                   if (isErasePreReq(Flags)
-#ifdef NOTYET
-                    || !( isInstallPreReq(Flags)
-                       || isLegacyPreReq(Flags) )
-#endif
-                       )
-                       /*@innercontinue@*/ continue;
-                   /*@switchbreak@*/ break;
-               }
-
-               if ((qName = rpmdsN(requires)) == NULL)
-                   continue;   /* XXX can't happen */
-               if (!strncmp(qName, "rpmlib(", sizeof("rpmlib(")-1))
-                   continue;
-
-               pkgKey = RPMAL_NOMATCH;
-               key = alSatisfiesDepend(ts->addedPackages, requires, &pkgKey);
-               if (pkgKey == RPMAL_NOMATCH)
-                   continue;
-
-               for (qi = rpmteiInit(ts), i = 0;
-                    (q = rpmteiNext(qi, 0)) != NULL; i++)
-               {
-                   if (rpmteType(q) == TR_REMOVED)
-                       continue;
-                   if (pkgKey == rpmteAddedKey(q))
-                       break;
-               }
-               qi = rpmteiFree(qi);
-
-               if (q == NULL || i == ts->orderCount)
-                   continue;
-               if (selected[i] != 0)
-                   continue;
-               selected[i] = 1;
-
-               if (rpmteTree(p) == rpmteTree(q)) {
-                   int pdepth = rpmteDepth(p);
-                   int qdepth = rpmteDepth(q);
-
-#if 0
-                   if (pdepth == qdepth)
-                       continue;
-                   if (pdepth < qdepth) {
-                       if ((qdepth - pdepth) > 1)      continue;
-                       if (!strcmp(rpmteN(q), "glibc"))        continue;
-                       if (!strcmp(rpmteN(q), "bash")) continue;
-                   }
-#endif
-                   if (pdepth > qdepth) {
-                       if (!strcmp(rpmteN(q), "glibc"))        continue;
-                       if (!strcmp(rpmteN(q), "bash"))         continue;
-                       if (!strcmp(rpmteN(q), "info"))         continue;
-                       if (!strcmp(rpmteN(q), "mktemp"))       continue;
-                   }
-               }
-
-if (!printed) {
-fprintf(stdout, "// %s\n", rpmteN(p));
-printed = 1;
-}
-fprintf(stdout, "//\t%s (0x%x)\n", rpmdsNewDNEVR(identifyDepend(Flags), requires), Flags);
-fprintf(stdout, "\t\"%s\" -> \"%s\"\n", rpmteN(p), rpmteN(q));
-
-           }
-
-       }
-       pi = rpmteiFree(pi);
-#endif /* NOTNOW */
-
 fprintf(stdout, "}\n");
 
     }