- rescusitate --rebuild.
authorjbj <devnull@localhost>
Thu, 11 Apr 2002 16:55:19 +0000 (16:55 +0000)
committerjbj <devnull@localhost>
Thu, 11 Apr 2002 16:55:19 +0000 (16:55 +0000)
CVS patchset: 5389
CVS date: 2002/04/11 16:55:19

62 files changed:
.lclintrc
CHANGES
Doxyfile.in
beecrypt/debug.h
build.c
build/buildio.h
build/files.c
build/pack.c
build/spec.c
lib/Makefile.am
lib/depends.c
lib/depends.h [deleted file]
lib/fsm.c
lib/package.c
lib/problems.c
lib/psm.c
lib/psm.h
lib/query.c
lib/rpmal.c
lib/rpmal.h
lib/rpmchecksig.c
lib/rpmcli.h
lib/rpmfi.c
lib/rpminstall.c
lib/rpmlibprov.c
lib/rpmte.c
lib/rpmte.h
lib/rpmts.c
lib/rpmts.h
lib/signature.c
lib/transaction.c
lib/ts.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/header-py.c
python/rpmmodule.c
rpm.spec
rpm.spec.in
rpmqv.c
system.h
tools/rpmsort.c
tools/tpkgid.c
zlib/zlib.h

index 6089051..ca9175e 100644 (file)
--- a/.lclintrc
+++ b/.lclintrc
@@ -10,9 +10,6 @@
 
 -unrecogcomments       # XXX ignore doxygen markings
 
-
-#-deepbreak            # shortcut 485 occurences
-
 +strict                        # lclint level
 -includenest 16                # getting deep, sigh
 
diff --git a/CHANGES b/CHANGES
index 089af52..0cf43b7 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -98,6 +98,7 @@
        - use mmap when calculating file digests on verify, ~20% faster.
        - permit --dbpath and --root with signature (i.e. --import) modes.
        - beecrypt: add types.h, eliminate need for config.gnu.h.
+       - rescusitate --rebuild.
 
 4.0.3 -> 4.0.4:
        - solaris: translate i86pc to i386 (#57182).
index 597faa4..c2f4606 100644 (file)
@@ -360,7 +360,6 @@ INPUT                  = \
        @top_srcdir@/lib/cpio.c \
        @top_srcdir@/lib/cpio.h \
        @top_srcdir@/lib/depends.c \
-       @top_srcdir@/lib/depends.h \
        @top_srcdir@/lib/formats.c \
        @top_srcdir@/lib/fs.c \
        @top_srcdir@/lib/fsm.c \
index 44c8d64..19376c0 100644 (file)
@@ -6,13 +6,6 @@
 
 #include <assert.h>
 
-#ifdef  __LCLINT__
-#define        ntohl(_x)       (_x)
-#define        ntohs(_x)       (_x)
-#define        htonl(_x)       (_x)
-#define        htons(_x)       (_x)
-#endif
-
 #ifdef DMALLOC
 #include <dmalloc.h>
 #endif
diff --git a/build.c b/build.c
index a2a8436..1a577f9 100644 (file)
--- a/build.c
+++ b/build.c
@@ -7,6 +7,9 @@
 #include <rpmcli.h>
 #include <rpmbuild.h>
 
+#include "rpmte.h"
+#include "rpmts.h"
+
 #include "build.h"
 #include "debug.h"
 
@@ -28,6 +31,8 @@ static int checkSpec(rpmTransactionSet ts, Header h)
      && !headerIsEntry(h, RPMTAG_CONFLICTNAME))
        return 0;
 
+    rc = rpmtransAddPackage(ts, h, NULL, 0, NULL);
+
     rc = rpmdepCheck(ts, &conflicts, &numConflicts);
     /*@-branchstate@*/
     if (rc == 0 && conflicts) {
@@ -38,6 +43,9 @@ static int checkSpec(rpmTransactionSet ts, Header h)
     }
     /*@=branchstate@*/
 
+    /* XXX nuke the added package. */
+    rpmtransClean(ts);
+
     return rc;
 }
 
index d5bc8a4..dc3800b 100644 (file)
@@ -8,7 +8,6 @@
  * @todo Eliminate, merge into rpmlib.
  */
 
-#include "psm.h"
 #include "rpmbuild.h"
 
 /**
index e223024..8110530 100644 (file)
@@ -14,6 +14,9 @@
 #include <rpmio_internal.h>
 #include <rpmbuild.h>
 
+#include "psm.h"
+#include "rpmfi.h"
+#include "rpmte.h"
 #include "buildio.h"
 
 #include "myftw.h"
index c130e0a..0aa6d91 100644 (file)
@@ -7,9 +7,11 @@
 
 #include <rpmio_internal.h>
 #include <rpmbuild.h>
-#include "buildio.h"
 
-#include "depends.h"
+#include "psm.h"
+#include "rpmfi.h"
+
+#include "buildio.h"
 
 #include "legacy.h"    /* XXX providePackageNVR */
 #include "signature.h"
index 18280e7..684a610 100644 (file)
@@ -6,6 +6,8 @@
 #include "system.h"
 
 #include "buildio.h"
+#include "rpmfi.h"
+
 #include "debug.h"
 
 /*@-redecl@*/
index 50a8a6f..e6a0709 100644 (file)
@@ -17,7 +17,7 @@ pkgincdir = $(pkgincludedir)
 pkginc_HEADERS = \
        misc.h rpmcli.h rpmlib.h stringbuf.h
 noinst_HEADERS = \
-       cpio.h depends.h fsm.h manifest.h psm.h \
+       cpio.h fsm.h manifest.h psm.h \
        rpmal.h rpmds.h rpmfi.h rpmlead.h rpmte.h rpmts.h signature.h
 
 mylibpaths = \
index 2b7bc89..6b50e6a 100644 (file)
@@ -8,8 +8,11 @@
 
 #include <rpmmacro.h>          /* XXX rpmExpand("%{_dependency_whiteout}" */
 
-#define _NEED_TEITERATOR       1
-#include "depends.h"
+#include "rpmal.h"
+#include "rpmds.h"
+#include "rpmfi.h"
+#include "rpmte.h"
+#include "rpmts.h"
 
 #include "rpmdb.h"             /* XXX response cache needs dbiOpen et al. */
 
@@ -178,7 +181,7 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
     if (!duplicate)
        ts->orderCount++;
     
-    pkgKey = alAddPackage(ts->addedPackages, pkgKey, teGetKey(p),
+    pkgKey = alAddPackage(&ts->addedPackages, pkgKey, teGetKey(p),
                        teGetDS(p, RPMTAG_PROVIDENAME),
                        teGetFI(p, RPMTAG_BASENAMES));
     if (pkgKey == RPMAL_NOMATCH) {
@@ -302,7 +305,7 @@ void rpmtransAvailablePackage(rpmTransactionSet ts, Header h, fnpyKey key)
     TFI_t fi = fiNew(ts, NULL, h, RPMTAG_BASENAMES, scareMem);
 
     /* XXX FIXME: return code RPMAL_NOMATCH is error */
-    (void) alAddPackage(ts->availablePackages, RPMAL_NOMATCH, key,
+    (void) alAddPackage(&ts->availablePackages, RPMAL_NOMATCH, key,
                provides, fi);
     fi = fiFree(fi, 1);
     provides = dsFree(provides);
@@ -1542,6 +1545,7 @@ assert(newOrderCount == ts->orderCount);
     ts->orderAlloced = ts->orderCount;
     orderList = _free(orderList);
 
+#ifdef DYING
     /* Clean up after dependency checks */
     pi = teInitIterator(ts);
     while ((p = teNextIterator(pi)) != NULL) {
@@ -1550,6 +1554,10 @@ assert(newOrderCount == ts->orderCount);
     pi = teFreeIterator(pi);
 
     ts->addedPackages = alFree(ts->addedPackages);
+    ts->numAddedPackages = 0;
+#else
+    rpmtransClean(ts);
+#endif
 
     return 0;
 }
diff --git a/lib/depends.h b/lib/depends.h
deleted file mode 100644 (file)
index 87b58fb..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef H_DEPENDS
-#define H_DEPENDS
-
-/** \ingroup rpmdep rpmtrans
- * \file lib/depends.h
- * Structures used for dependency checking.
- */
-
-#include <header.h>
-#include <rpmhash.h>
-
-#include "rpmds.h"
-#include "rpmfi.h"
-#include "rpmal.h"
-
-/*@unchecked@*/
-/*@-exportlocal@*/
-extern int _cacheDependsRC;
-/*@=exportlocal@*/
-
-#include "rpmts.h"
-
-/* XXX FIXME: rpmTransactionSet not opaque */
-#include "rpmte.h"
-
-#ifdef DYING
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * Return (malloc'd) header name-version-release string.
- * @param h            header
- * @retval np          name tag value
- * @return             name-version-release string
- */
-/*@only@*/ char * hGetNEVR(Header h, /*@out@*/ const char ** np )
-       /*@modifies *np @*/;
-
-#ifdef __cplusplus
-}
-#endif
-#endif
-
-#endif /* H_DEPENDS */
index 0eb92da..b98a70e 100644 (file)
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -7,6 +7,11 @@
 
 #include "psm.h"
 #include "rpmerr.h"
+
+#include "rpmfi.h"
+#include "rpmte.h"
+#include "rpmts.h"
+
 #include "debug.h"
 
 /*@access FD_t @*/
index 80ee22e..bed2182 100644 (file)
@@ -9,7 +9,7 @@
 #include <rpmio_internal.h>
 #include <rpmlib.h>
 
-#include "depends.h"
+#include "rpmts.h"
 
 #include "misc.h"      /* XXX stripTrailingChar() */
 #include "legacy.h"    /* XXX providePackageNVR() and compressFileList() */
index acf692c..c73f249 100644 (file)
@@ -6,7 +6,8 @@
 
 #include <rpmlib.h>
 
-#include "depends.h"
+#include "rpmts.h"
+
 #include "misc.h"
 #include "debug.h"
 
index 7485895..cf7ea44 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -9,7 +9,11 @@
 #include <rpmmacro.h>
 #include <rpmurl.h>
 
-#include "depends.h"
+#include "rpmal.h"
+#include "rpmds.h"
+#include "rpmfi.h"
+#include "rpmte.h"
+#include "rpmts.h"
 
 #include "rpmlead.h"           /* writeLead proto */
 #include "signature.h"         /* signature constants */
 /*@access PSM_t@*/
 
 /*@access TFI_t@*/
+/*@access transactionElement@*/        /* XXX rpmInstallSourcePackage */
 /*@access rpmTransactionSet@*/
 
 /*@access alKey@*/
 /*@access rpmDepSet@*/
 
-#ifdef DYING
-/*@-redecl -declundef -exportheadervar@*/
-/*@unchecked@*/
-extern const char * chroot_prefix;
-/*@=redecl =declundef =exportheadervar@*/
-#endif
-
 int rpmVersionCompare(Header first, Header second)
 {
     const char * one, * two;
@@ -109,8 +107,8 @@ static struct tagMacro {
  * @return             0 always
  */
 static int rpmInstallLoadMacros(TFI_t fi, Header h)
-       /*@globals rpmGlobalMacroContext, internalState @*/
-       /*@modifies rpmGlobalMacroContext, internalState @*/
+       /*@globals rpmGlobalMacroContext @*/
+       /*@modifies rpmGlobalMacroContext @*/
 {
     HGE_t hge = (HGE_t) fi->hge;
     struct tagMacro * tagm;
@@ -498,7 +496,7 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts, FD_t fd,
 /*@-assignexpose@*/
     fi->te = ts->order[0];
 /*@=assignexpose@*/
-/*@i@*/ fi->te->fd = fd;
+    fi->te->fd = fdLink(fd, "installSourcePackage");
     hge = fi->hge;
     hfd = fi->hfd;
 
@@ -623,12 +621,21 @@ exit:
     if (h) h = headerFree(h, "InstallSourcePackage exit");
 
     /*@-branchstate@*/
-    if (fi)
+    if (fi) {
+       if (fi->te->fd)
+           (void) Fclose(fi->te->fd);
+       fi->te->fd = NULL;
+       fi->te = NULL;
        fi = fiFree(fi, 1);
+    }
     /*@=branchstate@*/
 
     psm->fi = NULL;
     psm->te = NULL;
+
+    /* XXX nuke the added package(s). */
+    rpmtransClean(ts);
+
     psm->ts = rpmtsUnlink(ts, "InstallSourcePackage");
 
     return rc;
@@ -1586,7 +1593,7 @@ assert(psm->mi == NULL);
                rc = RPMRC_FAIL;
                break;
            }
-           /*@-nullpass@*/     /* LCL: psm->fd != NULL here. */
+           /*@-nullpass@*/     /* FIX: fdDup mey return NULL. */
            xx = Fflush(psm->fd);
            psm->cfd = Fdopen(fdDup(Fileno(psm->fd)), psm->rpmio_flags);
            /*@=nullpass@*/
@@ -1740,7 +1747,9 @@ assert(psm->mi == NULL);
            psm->what = RPMCALLBACK_CPIO_ERROR;
            psm->amount = 0;
            psm->total = 0;
+           /*@-nullstate@*/ /* FIX: psm->fd may be NULL. */
            xx = psmStage(psm, PSM_NOTIFY);
+           /*@=nullstate@*/
        }
 
        if (fi->h && (psm->goal == PSM_PKGERASE || psm->goal == PSM_PKGSAVE))
@@ -1816,13 +1825,6 @@ assert(psm->mi == NULL);
            /*@=superuser@*/
            psm->chrootDone = ts->chrootDone = 1;
            if (ts->rpmdb != NULL) ts->rpmdb->db_chrootDone = 1;
-#ifdef DYING
-           /*@-onlytrans@*/
-           /*@-mods@*/
-           chroot_prefix = ts->rootDir;
-           /*@=mods@*/
-           /*@=onlytrans@*/
-#endif
        }
        break;
     case PSM_CHROOT_OUT:
index 09685ce..38742da 100644 (file)
--- a/lib/psm.h
+++ b/lib/psm.h
@@ -7,7 +7,6 @@
  */
 
 #include "fsm.h"
-#include "depends.h"
 
 /**
  */
index dd64263..5b7d429 100644 (file)
@@ -15,7 +15,8 @@
 #include <rpmcli.h>
 #include <rpmbuild.h>
 
-#include "depends.h"
+#include "rpmts.h"
+
 #include "manifest.h"
 
 #include "debug.h"
index ac4ba00..41a4dfb 100644 (file)
@@ -6,7 +6,9 @@
 
 #include <rpmlib.h>
 
-#include "depends.h"
+#include "rpmal.h"
+#include "rpmds.h"
+#include "rpmfi.h"
 
 #include "debug.h"
 
@@ -287,7 +289,7 @@ void alDelPackage(availableList al, alKey pkgKey)
     availablePackage alp;
     TFI_t fi;
 
-    if (al->list == NULL)
+    if (al == NULL || al->list == NULL)
        return;         /* XXX can't happen */
 
     alp = al->list + pkgNum;
@@ -366,12 +368,19 @@ fprintf(stderr, "*** del %p[%d]\n", al->list, pkgNum);
     return;
 }
 
-alKey alAddPackage(availableList al, alKey pkgKey, fnpyKey key,
+alKey alAddPackage(availableList * alistp, alKey pkgKey, fnpyKey key,
                rpmDepSet provides, TFI_t fi)
 {
-    alNum pkgNum = alKey2Num(al, pkgKey);
+    alNum pkgNum;
+    availableList al;
     availablePackage alp;
 
+    /* If list doesn't exist yet, create. */
+    if (*alistp == NULL)
+       *alistp = alCreate(5);
+    al = *alistp;
+    pkgNum = alKey2Num(al, pkgKey);
+
     if (pkgNum >= 0 && pkgNum < al->size) {
        alDelPackage(al, pkgKey);
     } else {
@@ -566,10 +575,12 @@ assert(ix < 0x10000);
 
 void alMakeIndex(availableList al)
 {
-    availableIndex ai = &al->index;
+    availableIndex ai;
     availablePackage alp;
     int i;
 
+    if (al == NULL) return;
+    ai = &al->index;
     if (ai->size || al->list == NULL) return;
 
     for (i = 0; i < al->size; i++) {
index fe54a9d..e611903 100644 (file)
@@ -13,9 +13,11 @@ typedef /*@abstract@*/ struct availableList_s *              availableList;
  * @param delta                no. of entries to add on each realloc
  * @return al          new available list
  */
+/*@-exportlocal@*/
 /*@only@*/
 availableList alCreate(int delta)
        /*@*/;
+/*@=exportlocal@*/
 
 /**
  * Free available packages, items, and directory members.
@@ -32,24 +34,24 @@ availableList alFree(/*@only@*/ /*@null@*/ availableList al)
  * @param pkgKey       package key
  */
 /*@-exportlocal@*/
-void alDelPackage(availableList al, /*@null@*/ alKey pkgKey)
+void alDelPackage(/*@null@*/ availableList al, /*@null@*/ alKey pkgKey)
        /*@modifies al @*/;
 /*@=exportlocal@*/
 
 /**
  * Add package to available list.
- * @param al           available list
+ * @param alistp       address of available list
  * @param pkgKey       package key, RPMAL_NOMATCH to force an append
  * @param key          associated file name/python object
  * @param provides     provides dependency set
  * @param fi           file info set
  * @return             available package index
  */
-alKey alAddPackage(availableList al,
+alKey alAddPackage(availableList * alistp,
                /*@dependent@*/ /*@null@*/ alKey pkgKey,
                /*@dependent@*/ /*@null@*/ fnpyKey key,
                /*@null@*/ rpmDepSet provides, /*@null@*/ TFI_t fi)
-       /*@modifies al, provides, fi @*/;
+       /*@modifies *alistp, provides, fi @*/;
 
 /**
  * Add package provides to available list index.
@@ -68,7 +70,7 @@ void alAddProvides(availableList al,
  * Generate index for available list.
  * @param al           available list
  */
-void alMakeIndex(availableList al)
+void alMakeIndex(/*@null@*/ availableList al)
        /*@modifies al @*/;
 
 /**
index c5974ca..37a8360 100644 (file)
@@ -9,7 +9,7 @@
 #include <rpmcli.h>
 #include "rpmpgp.h"
 
-#include "depends.h"
+#include "rpmts.h"
 
 #include "rpmlead.h"
 #include "signature.h"
index 71c5a5d..30ca047 100644 (file)
@@ -427,16 +427,16 @@ extern int packagesTotal;
  * Install source rpm package.
  * @param ts           transaction set
  * @param arg          source rpm file name
- * @retval specFile    address of (installed) spec file name
+ * @retval specFilePtr address of (installed) spec file name
  * @retval cookie
  * @return             0 on success
  */
 int rpmInstallSource(rpmTransactionSet ts, const char * arg,
-               /*@null@*/ /*@out@*/ const char ** specFile,
+               /*@null@*/ /*@out@*/ const char ** specFilePtr,
                /*@null@*/ /*@out@*/ const char ** cookie)
        /*@globals rpmGlobalMacroContext,
                fileSystem, internalState@*/
-       /*@modifies ts, *specFile, *cookie, rpmGlobalMacroContext,
+       /*@modifies ts, *specFilePtr, *cookie, rpmGlobalMacroContext,
                fileSystem, internalState @*/;
 
 /** \ingroup rpmcli
index 2b332af..f2970b0 100644 (file)
@@ -7,7 +7,10 @@
 
 #include "fsm.h"       /* XXX newFSM and CPIO_MAP_* */
 
-#include "depends.h"
+#include "rpmfi.h"
+#include "rpmte.h"
+#include "rpmts.h"
+
 #include "misc.h"      /* XXX stripTrailingChar */
 
 #include "debug.h"
index a248f4d..3ee0c73 100644 (file)
@@ -6,7 +6,8 @@
 
 #include <rpmcli.h>
 
-#include "depends.h"           /* XXX ts->rpmdb */
+#include "rpmts.h"             /* XXX ts->rpmdb */
+
 #include "manifest.h"
 #include "misc.h"      /* XXX for rpmGlob() */
 #include "debug.h"
@@ -19,8 +20,6 @@
 /*@access IDTX @*/
 /*@access IDT @*/
 
-extern int _rpmio_debug;
-
 /*@unchecked@*/
 static int hashesPrinted = 0;
 
@@ -709,8 +708,6 @@ int rpmInstallSource(rpmTransactionSet ts, const char * arg,
     FD_t fd;
     int rc;
 
-fprintf(stderr, "*** rpmInstallSource(%p,%s,%p,%p)\n", ts, arg, specFilePtr, cookie);
-_rpmio_debug = -1;
     fd = Fopen(arg, "r.ufdio");
     if (fd == NULL || Ferror(fd)) {
        rpmMessage(RPMMESS_ERROR, _("cannot open %s: %s\n"), arg, Fstrerror(fd));
index 2b152d4..92ab4a7 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <rpmlib.h>
 
-#include "depends.h"
+#include "rpmds.h"
 
 #include "debug.h"
 
index 7c39743..bf98b63 100644 (file)
@@ -4,9 +4,13 @@
  */
 #include "system.h"
 
-#define        _NEED_TEITERATOR        1
 #include "psm.h"
 
+#include "rpmds.h"
+#include "rpmfi.h"
+#include "rpmte.h"
+#include "rpmts.h"
+
 #include "debug.h"
 
 /*@unchecked@*/
@@ -455,6 +459,9 @@ transactionElement teNextIterator(teIterator tei)
     transactionElement te = NULL;
     int oc = -1;
 
+    if (tei == NULL || tei->ts == NULL || tei->ts->order == NULL)
+       return te;
+
     if (tei->reverse) {
        if (tei->oc >= 0)                       oc = tei->oc--;
     } else {
index 16b4dc4..853d84b 100644 (file)
@@ -110,7 +110,6 @@ struct transactionElement_s {
 
 };
 
-#if defined(_NEED_TEITERATOR)
 /**
  * Iterator across transaction elements, forward on install, backward on erase.
  */
@@ -121,7 +120,6 @@ struct teIterator_s {
     int ocsave;                        /*!< last returned iterator index. */
     int oc;                    /*!< iterator index. */
 };
-#endif
 
 #ifdef __cplusplus
 extern "C" {
@@ -431,7 +429,6 @@ rpmDepSet teGetDS(transactionElement te, rpmTag tag)
 TFI_t teGetFI(transactionElement te, rpmTag tag)
        /*@*/;
 
-#if defined(_NEED_TEITERATOR)
 /**
  * Return transaction element index.
  * @param tei          transaction element iterator
@@ -499,8 +496,6 @@ transactionElement teNextIterator(teIterator tei)
 transactionElement teNext(teIterator tei, rpmTransactionType type)
         /*@modifies tei @*/;
 
-#endif /* defined(_NEED_TEITERATOR) */
-
 #ifdef __cplusplus
 }
 #endif
index ca7ffc3..92e3ec4 100644 (file)
@@ -8,8 +8,8 @@
 #include <rpmmacro.h>          /* XXX rpmtsOpenDB() needs rpmGetPath */
 #include <rpmpgp.h>            /* XXX rpmtransFree() needs pgpFreeDig */
 
-#define _NEED_TEITERATOR       1
-#include "depends.h"
+#include "rpmte.h"
+#include "rpmts.h"
 
 #include "rpmdb.h"             /* XXX stealing db->db_mode. */
 
@@ -102,9 +102,19 @@ char * hGetNEVR(Header h, const char ** np)
 void rpmtransClean(rpmTransactionSet ts)
 {
     if (ts) {
-       HFD_t hfd = headerFreeData;
+       teIterator pi; transactionElement p;
+
+       /* Clean up after dependency checks. */
+       pi = teInitIterator(ts);
+       while ((p = teNextIterator(pi)) != NULL)
+           teCleanDS(p);
+       pi = teFreeIterator(pi);
+
+       ts->addedPackages = alFree(ts->addedPackages);
+       ts->numAddedPackages = 0;
+
        if (ts->sig != NULL)
-           ts->sig = hfd(ts->sig, ts->sigtype);
+           ts->sig = headerFreeData(ts->sig, ts->sigtype);
        if (ts->dig != NULL)
            ts->dig = pgpFreeDig(ts->dig);
     }
@@ -124,18 +134,8 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts)
 
        (void) rpmtsCloseDB(ts);
 
-       for (pi = teInitIterator(ts), oc = 0; (p = teNextIterator(pi)) != NULL; oc++) {
-/*@-type -unqualifiedtrans @*/
-           ts->order[oc] = teFree(ts->order[oc]);
-/*@=type =unqualifiedtrans @*/
-       }
-       pi = teFreeIterator(pi);
-/*@-type +voidabstract @*/     /* FIX: double indirection */
-       ts->order = _free(ts->order);
-/*@=type =voidabstract @*/
-
-       ts->addedPackages = alFree(ts->addedPackages);
        ts->availablePackages = alFree(ts->availablePackages);
+       ts->numAvailablePackages = 0;
        ts->di = _free(ts->di);
        ts->removedPackages = _free(ts->removedPackages);
        if (ts->scriptFd != NULL) {
@@ -146,6 +146,16 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts)
        ts->rootDir = _free(ts->rootDir);
        ts->currDir = _free(ts->currDir);
 
+       for (pi = teInitIterator(ts), oc = 0; (p = teNextIterator(pi)) != NULL; oc++) {
+/*@-type -unqualifiedtrans @*/
+           ts->order[oc] = teFree(ts->order[oc]);
+/*@=type =unqualifiedtrans @*/
+       }
+       pi = teFreeIterator(pi);
+/*@-type +voidabstract @*/     /* FIX: double indirection */
+       ts->order = _free(ts->order);
+/*@=type =voidabstract @*/
+
 /*@-nullstate@*/       /* FIX: partial annotations */
        rpmtransClean(ts);
 /*@=nullstate@*/
@@ -203,16 +213,13 @@ rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * rootDir)
     ts->chrootDone = 0;
 
     ts->numAddedPackages = 0;
-    ts->addedPackages = alCreate(ts->delta);
-
+    ts->addedPackages = NULL;
     ts->numAvailablePackages = 0;
-    ts->availablePackages = alCreate(ts->delta);
-
-    ts->orderAlloced = ts->delta;
+    ts->availablePackages = NULL;
+    ts->numAddedPackages = 0;
+    ts->orderAlloced = 0;
     ts->orderCount = 0;
-/*@-type -abstract@*/
-    ts->order = xcalloc(ts->orderAlloced, sizeof(*ts->order));
-/*@=type =abstract@*/
+    ts->order = NULL;
 
     ts->sig = NULL;
     ts->dig = NULL;
index 1b31e9b..fc2f12c 100644 (file)
@@ -6,11 +6,19 @@
  * Structures and prototypes used for an rpmTransactionSet
  */
 
+#include <rpmhash.h>   /* XXX hashTable */
+#include "rpmal.h"     /* XXX availablePackage/relocateFileList ,*/
+
 /*@unchecked@*/
 /*@-exportlocal@*/
 extern int _ts_debug;
 /*@=exportlocal@*/
 
+/*@unchecked@*/
+/*@-exportlocal@*/
+extern int _cacheDependsRC;
+/*@=exportlocal@*/
+
 /** \ingroup rpmdep
  * The set of packages to be installed/removed atomically.
  */
@@ -28,7 +36,7 @@ struct rpmTransactionSet_s {
     int filesystemCount;       /*!< No. of mounted filesystems. */
 /*@dependent@*/
     const char ** filesystems; /*!< Mounted filesystem names. */
-/*@only@*/
+/*@only@*/ /*@null@*/
     struct diskspaceInfo * di; /*!< Per filesystem disk/inode usage. */
 
     int dbmode;                        /*!< Database open mode. */
index c573800..3b96967 100644 (file)
@@ -9,7 +9,8 @@
 #include <rpmmacro.h>  /* XXX for rpmGetPath() */
 #include "rpmdb.h"
 
-#include "depends.h"
+#include "rpmts.h"
+
 #include "misc.h"      /* XXX for dosetenv() and makeTempFile() */
 #include "legacy.h"    /* XXX for mdbinfile() */
 #include "rpmlead.h"
index 7b96fa8..4e5e5aa 100644 (file)
@@ -6,9 +6,13 @@
 
 #include <rpmmacro.h>  /* XXX for rpmExpand */
 
-#define _NEED_TEITERATOR       1
 #include "psm.h"
 
+#include "rpmds.h"
+#include "rpmfi.h"
+#include "rpmte.h"
+#include "rpmts.h"
+
 #include "rpmdb.h"
 #include "fprint.h"
 #include "legacy.h"    /* XXX domd5 */
index 19f0f20..1b7dedc 100644 (file)
--- a/lib/ts.c
+++ b/lib/ts.c
@@ -5,7 +5,7 @@
 #include <rpmlib.h>
 #include <rpmpgp.h>
 
-#include "depends.h"
+#include "rpmts.h"
 
 #include "debug.h"
 
index 56ece54..a4a0461 100644 (file)
@@ -6,6 +6,9 @@
 #include "system.h"
 
 #include "psm.h"
+#include "rpmfi.h"
+#include "rpmts.h"
+
 #include <rpmcli.h>
 
 #include "legacy.h"    /* XXX domd5(), uidToUname(), gnameToGid */
index 58af59a..4ea9bce 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "chybné závislosti pøi sestavování:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Nelze otevøít spec soubor %s: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Nelze otevøít rouru pro tar: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Nelze èíst spec soubor z %s\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Nelze pøejmenovat %s na %s: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "nemohu zjistit stav %s: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Soubor %s není obyèejný soubor.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Nezdá se, ¾e by %s byl spec soubor.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Sestavuji cílové platformy: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Sestavuji pro cíl %s\n"
@@ -203,124 +203,124 @@ msgstr "Tento program lze voln
 msgid "Usage: %s {--help}\n"
 msgstr "Pou¾ití: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "Volba --rcfile byla odstranìna.\n"
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Pou¾ijte volbu \"--macros <soubor:...>\".\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "specifikovat lze jen jeden hlavní re¾im"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "najednou lze provést jen jeden typ dotazu èi ovìøení"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "neoèekávaný pøíznak pro dotaz"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "neoèekávaný formát dotazu"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "neoèekávaný zdroj dotazu"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "vynucena mù¾e být jen instalace, aktualizace, smazání zdrojových kódù a spec "
 "souboru"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "soubory mohou být pøemístìny jen pøi instalaci balíèkù"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "pou¾ít lze jen jeden z parametrù --prefix nebo --relocate"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate a --excludepath je mo¾no pou¾ít jen pøi instalaci nových balíèkù"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix je mo¾no pou¾ít jen pøi instalaci nových balíèkù"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametry pro --prefix musejí zaèínat znakem /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "pou¾ít lze jen jeden z parametrù --excludedocs a --includedocs"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mù¾e být pou¾it jen pøi instalaci a odstraòování balíèkù"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -328,7 +328,7 @@ msgstr ""
 "volba pro potlaèení skriptù mù¾e být pou¾ita jen pøi instalaci nebo pøi "
 "odstraòování balíèkù"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -336,7 +336,7 @@ msgstr ""
 "volba pro potlaèení triggerù mù¾e být pou¾ita jen pøi instalaci nebo "
 "odstraòování balíèkù"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -344,13 +344,13 @@ msgstr ""
 "--nodeps mù¾e být pou¾it jen pøi sestavování, rekompilaci, instalaci, "
 "odstraòování a kontrole"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test mù¾e být pou¾it jen pøi instalaci, odstraòování a sestavování"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -358,87 +358,87 @@ msgstr ""
 "--root (-r) mù¾e být pou¾it jen pøi instalaci, odstraòování, dotazech nebo "
 "znovuvytvoøení databáze"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametry pro --root (-r) musejí zaèínat znakem /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "¾ádné soubory k podepsání\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "pøístup k souboru %s se nezdaøil\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp nenalezeno: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Vlo¾te heslovou frázi: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Chybná heslová fráze\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Heslová fráze je v poøádku.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "©patná %%_signature spec v souboru maker.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign mù¾e být pou¾it jen pøi sestavování balíèkù"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "spu¹tìní selhalo\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "ke znovusestavení nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "pro sestavení nezadány ¾ádné spec soubory"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "pro sestavení nezadány ¾ádné tar soubory"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "k podepsání nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "k dotazu nezadány ¾ádné parametry"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "pro kontrolu nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekávané parametry pro --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "k dotazu nezadány ¾ádné parametry"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "Nelze otevøít doèasný soubor.\n"
 
@@ -516,180 +516,180 @@ msgstr "&& a || nen
 msgid "syntax error in expression\n"
 msgstr "chyba syntaxe ve výrazu\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK selhal: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Chybí '(' v %s %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Chybí ')' v %s(%s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Neplatný %s token: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Chybìjící %s v %s %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Následuje neprázdný znak %s(): %s\n"
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "©patná syntaxe: %s(%s)\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "©patná práva spec: %s(%s)\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "©patná práva adresáøe: %s(%s)\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, 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:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Duplicitní locale %.*s v %%lang(%s)\n"
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosa¾en limit pro %%docdir\n"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dva soubory na jednom øádku: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Soubor musí zaèínat na \"/\": %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Soubor uveden dvakrát: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Soubor nenalezen: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "©patný vlastník/skupina: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Soubor %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Soubor potøebuje úvodní \"/\": %s\n"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Soubor nenalezen globem: %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nemohu otevøít %%files soubor %s: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "øádek: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nemohu provést fork %s: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s selhalo\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Nemohu zapsat v¹echna data do %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Hledám   %s: (pou¾it %s)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Selhalo vyhledání %s:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -723,156 +723,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:79
+#: build/pack.c:81
 #, 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:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "vytváøení archívu selhalo: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "zápis cpio_copy selhal: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "ètení cpio_copy selhalo: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Nemohu otevøít PreIn soubor: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Nemohu otevøít PreUn soubor: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Nemohu otevøít PostIn soubor: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Nemohu otevøít PostUn soubor: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Nemohu otevøít VerifyScript soubor: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, 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:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otevøení %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: ètení %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek selhal: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s není RPM balíèek\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: ètení hlavièky z %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nemohu zapsat hlavièku do %s: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "©patná CSA data\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nemohu zapsat hlavièku do %s: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Generuji podpis: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, 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:644
+#: build/pack.c:646
 #, 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:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nemohu zapsat hlavièku do %s: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nemohu pøeèíst payload z %s: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
@@ -1377,17 +1377,17 @@ msgstr "c
 msgid "lookup i18N strings in specfile catalog"
 msgstr "vyhledat i18N øetìzce ve specfile katalogu"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "øádek %d: ©patné èíslo: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "øádek %d: ©patné èíslo %s: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "øádek %d: ©patné èíslo %s: %s\n"
@@ -1433,70 +1433,70 @@ msgstr ""
 msgid " failed - "
 msgstr "selhal - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "¹patný db soubor %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "¾ádné balíèky\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr "NE "
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr "ANO"
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr "========== ukládání tsort relací\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1504,20 +1504,20 @@ msgid ""
 msgstr ""
 "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr "SMYÈKA:\n"
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr "========== pokraèuje tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1566,47 +1566,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:308
+#: lib/fsm.c:313
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "vytvoøen adresáø %s s právy %04o.\n"
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -2080,301 +2080,301 @@ msgid "generate signature"
 msgstr "generovat PGP/GPG podpis"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "balíèek %s je pro jinou architekturu"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, 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/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, 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/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, 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/problems.c:280
+#: lib/problems.c:281
 #, 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/problems.c:285
+#: lib/problems.c:286
 #, 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/problems.c:289
+#: lib/problems.c:290
 #, 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/problems.c:293
+#: lib/problems.c:294
 #, 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/problems.c:298
+#: lib/problems.c:299
 #, 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/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " je nutné pro %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 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:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nemohu zapsat do %%%s %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 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:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, 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:1486
+#: lib/psm.c:1493
 #, 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:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "nesprávný formát: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾ádné soubory)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normální      "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "nahrazen      "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "neinstalován  "
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "sdílen v síti "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámý %3d) "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(chybí stav)  "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otevøení %s selhalo: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "dotaz na %s se nezdaøil\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "¾ádné balíèky\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Nemohu èíst %s: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾ádný balíèek nevy¾aduje %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾ádný balíèek neposkytuje %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "soubor %s nevlastní ¾ádný balíèek\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr "záznam balíèku èíslo: %u\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "záznam %d nelze pøeèíst\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "¹patný db soubor %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
@@ -2468,89 +2468,89 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "Pøipravuji..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "Pøipravuji balíèky pro instalaci..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Stahuji %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... jako %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "pøeskakuji %s - pøenos selhal - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balíèek %s není pøemístitelný\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pøi ètení ze souboru %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, 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:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nemù¾e být nainstalován\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, 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:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "nevyøe¹ené závislosti:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "instaluji binární balíèky\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu otevøít soubor %s: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" urèuje více balíèkù\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaluji %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2660,171 +2660,171 @@ msgstr "Nemohu otev
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít databázi balíèkù v %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, 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:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Aktuální délka: %12d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Chybí podpis\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 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:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Podpisu: velikost(%d)+vata(%d)\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nemohu spustit %s: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "pgp selhalo\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "pgp selhalo pøi zápisu podpisu\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Velikost podpisu PGP: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "nemohu èíst podpis\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Pøeèteno %d bajtù PGP podpisu\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "gpg selhalo\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "gpg selhalo pøi zápisu podpisu\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Velikost GPG podpisu: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "©patná %%_signature spec v souboru maker\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "vynechat pøípadné MD5 souèty"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Chybí podpis\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Podpisu: velikost(%d)+vata(%d)\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, 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:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "získávám seznam pøipojených systémù souborù\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "chybí      %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: kontrola digestu v hlavièce selhala\n"
index 0718a72..986f77a 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -10,53 +10,53 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 0.9alpha\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "afhængighedskrav for pakkeopbygning kunne ikke imødekommes:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Kan ikke åbne spec-fil %s: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Kunne ikke åbne tar-videreførsel: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Kunne ikke læse spec-fil fra %s\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Kunne ikke omdøbe %s til %s: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "kunne ikke finde %s: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Filen %s er ikke en regulær fil.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Filen %s synes ikke at være en spec-fil.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Opbygger mål-platforme: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Opbygger for mål %s\n"
@@ -203,135 +203,135 @@ msgstr "Dette program kan frit distribueres under betingelserne i GNU GPL"
 msgid "Usage: %s {--help}\n"
 msgstr "Brug: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "Tilvalget --rcfile er fjernet.\n"
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Brug \"--macros <fil:...>\" i stedet..\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "kun ét hovedtilvalg kan angives"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "kun én af forespørgsel/verificér kan udføres ad gangen"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "uventet forespørgselsflag"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "uventet forespørgselsformat"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "uventet forespørgselskilde"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath angivet ved en operation, der ikke benytter en database"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "kun installation, opgradering, rmsource og rmspec kan tvinges igennem"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "filer kan kun omrokeres under installation"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "kun én af --prefix eller --relocate kan bruges"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate og --excludepath kan kun bruges, når nye pakker installeres"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan kun bruges, når nye pakker installeres"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametre til --prefix skal starte med et /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan kun angives ved installation"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan kun angives ved installation"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan kun angives ved installation"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan kun angives ved installation"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan kun angives ved installation"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan kun angives ved installation"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "kun én af --excludedocs og --includedocs kan angives"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan kun angives ved installation"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan kun angives ved installation"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan kun angives ved installation"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan kun angives ved installation"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan kun angives ved installation"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb kan kun angives ved installation og sletning"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb kan kun angives ved installation og sletning"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--notriggers kan kun angives ved installation og sletning af pakker"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -339,13 +339,13 @@ msgstr ""
 "--nodeps kan kun angives ved opbygning, genopbygning, genoversættelse, "
 "installation, sletning og verifikation"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test kan kun angives ved installation, sletning og opbygning"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -353,87 +353,87 @@ msgstr ""
 "--root (-r) kan kun angives ved installation, sletning, forespørgsel og "
 "genopbygning af databasen"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parameteren til --root (-r) skal starte med et /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "ingen filer at underskrive\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan ikke tilgå filen %s\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp ikke fundet: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Indtast adgangskode: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Adgangskode ikke godkendt\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Adgangskode godkendt.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Ugyldig angivelse af %%_signature i makrofil.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign kan kun bruges ved pakkeopbygning"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "eksekvering mislykkedes\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "ingen pakkefiler angivet til genopbygning"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "ingen spec-fil angivet til opbygning"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "ingen tar-arkiver angivet til opbygning"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ingen pakker angivet ved signering"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "ingen pakker angivet ved installation"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "ingen parametre angivet ved forespørgsel"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "ingen parametre angivet ved verifikation"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "uventede parametre til --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "ingen parametre angivet ved forespørgsel"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "Kunne ikke åbne midlertidig fil.\n"
 
@@ -511,180 +511,180 @@ msgstr "&& og || underst
 msgid "syntax error in expression\n"
 msgstr "syntaksfejl i udtryk\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK-fejl: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Manglende ')' i %s %s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ugyldigt %s-symbol: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Ikke-mellemrum efterfølger %s(): %s\n"
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Ugyldig syntaks: %s(%s)\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Ugyldig tilstandsangivelse: %s(%s)\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Ugyldig dirmode-spec: %s(%s)\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, 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:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Dobbelt locale %.*s i %%lang(%s)\n"
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Træfningsgrænse for %%docdir\n"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "To filer på én linie: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Fil skal begynde med \"/\": %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fil angivet to gange: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Fil passer ikke til præfiks (%s): %s\n"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke fundet: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig ejer/gruppe: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Fil kræver foranstillet \"/\": %s\n"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linie %d: Filnavn ikke tilladt: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Fil ikke fundet med glob: %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "linie: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunne ikke fraspalte ny proces til %s: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s mislykkedes\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Finder %s: (benytter %s)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Kunne ikke finde %s:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Gennemløber filer: %s-%s-%s\n"
@@ -720,156 +720,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:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy-skrivning mislykkedes: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy-læsning mislykkedes: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Kunne ikke åbne 'PreIn'-fil: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Kunne ikke åbne 'PreUn'-fil: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Kunne ikke åbne 'PostIn'-fil: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Kunne ikke åbne 'PostUn'-fil: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Kunne ikke åbne 'VerifyScript'-fil: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Kunne ikke åbne skriptfilen Trigger: %s\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: åbn %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: læs %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s er ikke nogen RPM-pakke\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: læser hoved fra %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Kunne ikke skrive hoved til %s: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "Ugyldige CSA-data\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Kunne ikke skrive hoved til %s: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Genererer signatur: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Kunne ikke åbne sigtarget %s: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Kunne ikke skrive hoved til %s: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Kunne ikke læse pakkeindhold fra %s: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "kan ikke oprette %s: %s\n"
@@ -1377,17 +1377,17 @@ msgstr "gennemtving m
 msgid "lookup i18N strings in specfile catalog"
 msgstr "slå i18N-strenge op i spec-fil katalog"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linie %d: Ugyldigt tal: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linie %d: Ugyldigt 'no%s'-tal: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linie %d: Ugyldigt %s-tal: %s\n"
@@ -1434,90 +1434,90 @@ msgstr ""
 msgid " failed - "
 msgstr " mislykkedes - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tilfører)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tilfører)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db tilfører)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 #, fuzzy
 msgid "NO "
 msgstr "IKKE O.K."
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr "========== gemmer tsort-relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr "LØKKE:\n"
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsætter tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1566,46 +1566,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:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -2095,304 +2095,304 @@ msgid "generate signature"
 msgstr "generér PGP/GPG-signatur"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "pakken %s hører til en anden arkitektur"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "pakken %s hører til et andet operativsystem"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sti %s i pakke %s kan ikke omrokeres"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, 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/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, 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/problems.c:280
+#: lib/problems.c:281
 #, 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/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "pakke %s prætransaktion-systemkald: %s mislykkedes: %s"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ukendt fejl %d under arbejdet med pakken %s"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " skaber konflikt med %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " kræves af %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d understøttes ikke\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke oprette %s: %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kunne ikke skrive til %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ugyldigt format: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(indeholder ingen filer)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "erstattet     "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "ej installeret"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "ej delt       "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ukendt %3d)  "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(ingen status)"
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kunne ikke forespørge %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "forespørgsel af %s mislykkedes\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: læs manifest mislykkedes: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "forespørgsel af spec-fil %s mislykkedes, kunne ikke tolkes\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "ingen pakker\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "gruppe %s indeholder ingen pakker\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ingen pakker udløser %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Kunne ikke læse %s: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "ingen pakker udløser %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ingen pakker kræver %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ingen pakker tilfører %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s tilhører ingen pakke\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ugyldigt pakkenummer: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr "pakkens post-nummer: %u\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "post %d kunne ikke læses\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (db tilfører)\n"
@@ -2486,89 +2486,89 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "Forbereder..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker til installation..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "overspringer %s - overførsel mislykkedes - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke omrokeres\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fejl ved læsning fra filen %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, 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:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kunne ikke installeres\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fandt %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kunne ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" angiver flere pakker\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjernelse af disse pakker ville bryde afhængighederne:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2680,170 +2680,170 @@ msgstr "Kunne ikke 
 msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen er ikke regulær -- overspringer størrelsestjek\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, 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:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Faktisk størrelse: %12d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Gammel PGP-signatur\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 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:225
+#: lib/signature.c:226
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Signaturstørrelse: %d\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunne ikke udføre %s: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "pgp fejlede\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "pgp kunne ikke skrive signatur\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP-signaturstørrelse: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "kunne ikke læse signaturen\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fik %d byte af PGP-signatur\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "gpg fejlede\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "gpg kunne ikke skrive signaturen\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG-signaturstørrelse: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Hovedstørrelse er for stor"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "overspring eventuelle MD5-signaturer"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signaturfyld : %d\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterede filsystemer\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "manglende  %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index b524c81..911c9f1 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -45,59 +45,59 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
 # , c-format
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
 # , c-format
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s scheint kein RPM-Paket zu sein\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s scheint kein RPM-Paket zu sein\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
@@ -249,132 +249,132 @@ msgstr "Dies darf unter den Bedingungen der 
 msgid "Usage: %s {--help}\n"
 msgstr "Benutzung: rpm {--help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Benutzen Sie stattdessen -e oder --erase\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "Es darf nur ein Hauptmodus angegeben werden"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 "Nur nur eine Art der Anfrage/Überprüfung kann pro Programmlauf durchgeführt "
 "werden"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "nur die Installation und Aktualisierung darf erzwungen werden"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "Dateien können nur während der Paketinstallation verschoben werden"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "Argumente zu --prefix müssen mit einem / beginnen"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -383,7 +383,7 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -392,7 +392,7 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -401,7 +401,7 @@ msgstr ""
 "--nodeps darf nur während der Paketinstallation, -deinstallation und -"
 "überprüfung angegeben werden"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -409,7 +409,7 @@ msgstr ""
 "--test darf nur während der Paketinstallation, -deinstallation und -"
 "erstellung angegeben werden"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -417,90 +417,90 @@ msgstr ""
 "--root (-r) darf nur während der Paketinstallation, -deinstallation, -"
 "anfrage und Datenbankneuerstellungen angegeben werden"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Das Passwort ist richtig.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign darf nur während der Paketerstellung benutzt werden"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "Es wurden keine Pakete für die Signatur angeben"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "Unerwartete Argumente zu --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
 # , c-format
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, 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:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "fehlende { nach %{"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "fehlender ':' bei %s:%d"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "fehlende { nach %{"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, 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:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, 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:286
+#: build/pack.c:288
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/pack.c:296
+#: build/pack.c:298
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, 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:342
+#: build/pack.c:344
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
 # , c-format
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "PGP-Signatur generieren"
 
 # , c-format
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -1508,17 +1508,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
@@ -1568,91 +1568,91 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
 # , c-format
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
 # FIXME
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1704,47 +1704,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -2259,315 +2259,315 @@ msgid "generate signature"
 msgstr "PGP-Signatur generieren"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, 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/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " steht im Konflikt mit %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " wird von %s-%s-%s gebraucht\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "Keine Stufen ausführen"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "Fehler beim Format %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(beinhaltet keine Dateien)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 #, fuzzy
 msgid "not installed "
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(unbekannter Typ)"
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "Paket hat keinen Namen"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "kein Paket triggert %s\n"
 
 # , c-format
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "kein Paket triggert %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "kein Paket verlangt %s\n"
 
 # oder besser: ... listet %s auf? -ke-
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "kein Paket stellt %s bereit\n"
 
 # , c-format
-#: lib/query.c:912
+#: lib/query.c:913
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
 
 # , c-format
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
@@ -2661,93 +2661,93 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
 # , c-format
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
 # oder besser: "... verletzen" ?
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
@@ -2860,177 +2860,177 @@ msgstr "Datei %s kann nicht zum Lesen ge
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-Signatur generieren"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, 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:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Konnte pgp nicht durchführen"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp fehlgeschlagen"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nicht möglich, die Signatur zu lesen"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "pgp fehlgeschlagen"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "alle MD5-Signaturen überspringen"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index cd9a195..b822b77 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,60 +1,60 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "En voi avata %s luettavaksi: %s."
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "%s:n avaus epäonnistui\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "En voi lukea %s: %s."
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "en voinut avata %s: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s ei vaikuta RPM-paketilta\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s ei vaikuta RPM-paketilta\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "virhe etsittäessä pakettia %s\n"
@@ -203,128 +203,128 @@ msgstr "T
 msgid "Usage: %s {--help}\n"
 msgstr "käyttö: rpm {--help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Käytä sen sijaan -e tai --erase .\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "vain yksi päämoodi voidaan määritellä"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vain asennus tai päivitys voidaan pakottaa"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "vain toinen --prefix tai --relocate voidaan antaa"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix parametrien pitää alkaa /-merkillä"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -332,7 +332,7 @@ msgid ""
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -340,7 +340,7 @@ msgid ""
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -349,7 +349,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +357,7 @@ msgstr ""
 "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
 "käännettäessä"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,89 +365,89 @@ msgstr ""
 "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
 "kyseltäessä ja tietokannan uudelleenluonnissa"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametrit --root (-r):lle alettava /-merkillä"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "uudelleenkäännolle ei määritelty paketteja"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "käännökselle ei annettu määrittelytiedostoja"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "käännökselle ei määritelty tar-tiedostoja"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "allekirjoitukselle ei määritelty paketteja"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "tarkistukselle ei annettu parametrejä"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags: odottamattomia parametrejä"
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, 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:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "puuttuva ':', %s:%d"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "pgp epäonnistui"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "virhe: %s ei vaikuta RPM paketilta\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -1400,17 +1400,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
@@ -1460,89 +1460,89 @@ msgstr ""
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "kysele kaikki paketit"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1591,46 +1591,46 @@ msgstr "en voinut avata %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -2142,305 +2142,305 @@ msgid "generate signature"
 msgstr "generoi PGP-allekirjoitus"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr "vaatii %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "virhe formaatissa: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(ei tiedostoja)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 #, fuzzy
 msgid "not installed "
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(tuntematon tyyppi)"
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "paketilla ei ole nimeä"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "kysele kaikki paketit"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "mikään pakettie ei tarvitse %s:a\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "mikään paketti ei tarjoa %s:a\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
@@ -2534,91 +2534,91 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "asennukselle ei määritelty paketteja"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "poistolle ei määritelty paketteja"
@@ -2728,177 +2728,177 @@ msgstr "En voi avata %s luettavaksi: %s."
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, 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:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "En voinut ajaa pgp:tä"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp epäonnistui"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "en voinut lukea allekirjoitusta"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "pgp epäonnistui"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ohita MD5-allekirjoitukset"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index f78b274..b9cca05 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -14,54 +14,54 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -211,146 +211,146 @@ msgstr "Peut tre redistribu librement selon les termes de la GNU GPL"
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Utilisez de prfrence -e ou --erase.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "un seul type de requte/vrification peut tre effectu  la fois"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "seules l'installation et la mise  jour peuvent tre forces"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr ""
 "--replacefiles ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean ne peut tre spcifi que lors de la construction d'un package"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign ne peut tre spcifi que lors de la construction d'un package"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -359,7 +359,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -368,7 +368,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -377,7 +377,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
@@ -386,7 +386,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -395,90 +395,90 @@ msgstr ""
 "--root (-r) ne peut tre spcifi que lors de l'installation, de la "
 "dsinstallation ou de l'interrogation d'un package"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 #, fuzzy
 msgid "pgp not found: "
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "La vrification du mot de passe a chou\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Mot de passe correct.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign ne peut tre spcifi que lors de la construction d'un package"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 #, fuzzy
 msgid "exec failed\n"
 msgstr "La construction a chou.\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "aucun package n'a t spcifi pour la reconstruction"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "aucun package n'a t spcifi pour la construction"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "aucun package n'a t spcifi pour la construction"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "aucun argument n'a t fourni pour la requte"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "aucun argument n'a t fourni pour la vrification"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "aucun argument n'a t fourni pour la requte"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, 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:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "La construction a chou.\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "      --sign            - genre une signature PGP"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1434,17 +1434,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
@@ -1491,86 +1491,86 @@ msgstr ""
 msgid " failed - "
 msgstr "La construction a chou.\n"
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, 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:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1617,46 +1617,46 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2180,304 +2180,304 @@ msgid "generate signature"
 msgstr "      --sign            - genre une signature PGP"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "conflicts with"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "is needed by"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 #, fuzzy
 msgid "not installed "
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2569,90 +2569,90 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
@@ -2762,174 +2762,174 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "La construction a chou.\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "La construction a chou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 0ddfde8..25b7eab 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=iso-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr ""
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr ""
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr ""
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr ""
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr ""
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr ""
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
@@ -201,229 +201,229 @@ msgstr ""
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr ""
 
@@ -498,180 +498,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr ""
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr ""
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr ""
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr ""
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:471
+#: build/pack.c:473
 msgid "Unable to create immutable header region.\n"
 msgstr ""
 
-#: build/pack.c:490
+#: build/pack.c:492
 msgid "Unable to write temp header\n"
 msgstr ""
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 msgid "Unable to write final header\n"
 msgstr ""
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:574
+#: build/pack.c:576
 msgid "Unable to reload signature header.\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr ""
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1348,17 +1348,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
@@ -1404,84 +1404,84 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1528,46 +1528,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2021,298 +2021,298 @@ msgid "generate signature"
 msgstr ""
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "conflicts with"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "is needed by"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr ""
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2403,89 +2403,89 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2595,167 +2595,167 @@ msgstr ""
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index d3c0582..62a5931 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "gat ekki útbúið pakkaskilyrði:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Get ekki opnað spec skrána %s: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Gat ekki opnað pípu í tar: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Gat ekki lesið spec skrá frá %s\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Gat ekki endurnefnt %s sem %s: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "gat ekki skoðað %s: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Skráin %s er ekki venjuleg skrá.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Skráin %s virðist ekki vera specskrá.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Þýði fyrir markkerfi: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Þýði fyrir markkerfi %s\n"
@@ -202,229 +202,229 @@ msgstr "
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "Get ekki opnað tempi skrá.\n"
 
@@ -499,180 +499,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "vantar ')' í %s %s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ógilt %s tákn: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Tvær skrár á einni línu: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Skráin er tvítekin: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Skráin fannst ekki: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Skrá %s: %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Skráin fannst ekki með 'glob': %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Gat ekki opnað %%files skrána %s: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "lína: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Gat ekki búið til undirferli (fork) %s: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s brást\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "gat ekki ritað öll gögn í %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "gat ekki fundið %s:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -706,156 +706,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "safnskráarsmíð brást á skrá %s: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "safnskráarsmíð brást: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Gat ekki opnað PreIn skrá: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Gat ekki opnað PostIn skrá: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Gat ekki opnað PostUn skrá: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Get ekki opnað VerifyScript skrá: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Gat ekki ritað haus í %s: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Gat ekki ritað haus í %s: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Get ekki opnað sigtarget %s: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Gat ekki ritað haus í %s: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Get ekki lesið innihald %s: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1354,17 +1354,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
@@ -1410,85 +1410,85 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "uppfæra pakka"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1535,46 +1535,46 @@ msgstr "gat ekki opna
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -2037,298 +2037,298 @@ msgid "generate signature"
 msgstr "búa til undirskrift"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "conflicts with"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "is needed by"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "get ekki ritað í %%%s %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: gat ekki lesið manifest: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Get ekki lesið %s: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2419,89 +2419,89 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2611,167 +2611,167 @@ msgstr "Get ekki opna
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Gat ekki keyrt %s: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "pgp brást\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "pgp gat ekki lesið undirskriftina\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "get ekki lesið undirskriftina\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "ggp brást\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "gpg get ekki lesið undirskriftina\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "vantar     %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index efef722..607687b 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -14,54 +14,54 @@ msgstr ""
 "Content-Type: text/plain; charset=EUC-JP\n"
 "Content-Transfer-Encoding: EUC-JP\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "spec ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "tar ¥Ñ¥¤¥×¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s ¤«¤é spec ¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "stat %s ¤Ë¼ºÇÔ: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "ÉáÄ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï ¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "ºîÀ®Ã楿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n"
@@ -216,62 +216,62 @@ msgstr "GNU
 msgid "Usage: %s {--help}\n"
 msgstr "»ÈÍÑË¡: rpm {--help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, fuzzy, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "°ì¤Ä¤Î¥á¥¸¥ã¡¼¥â¡¼¥É¤Î¤ß¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "Ì䤤¹ç¤ï¤»/¸¡¾Ú¤Ï°ìÅ٤˰ì¤Ä¤·¤«¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥é¥°"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥©¡¼¥Þ¥Ã¥È"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥½¡¼¥¹"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¡¢¥½¡¼¥¹ºï½ü¡¢¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ëºï½ü»þ¤Î¤ß¶¯À©¤Ç¤­"
 "¤Þ¤¹"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ßºÆÇÛÃ֤Ǥ­¤Þ¤¹"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¤â¤·¤¯¤Ï --relocate ¤Î¤¤¤º¤ì¤«¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
@@ -279,82 +279,82 @@ msgstr ""
 "--relocate ¤È --excludepath ¤Ï¿·¤·¤¤¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍÑ"
 "¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¤Ï¿·µ¬¤Ë¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¤Ø¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¤È --includedocs ¤Ï¤É¤Á¤é¤«°ìÊý¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "-ignoreos ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "-ignoresize ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Îºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -362,13 +362,13 @@ msgid ""
 msgstr ""
 "--nodeps ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎºîÀ®¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢ºîÀ®»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -376,88 +376,88 @@ msgstr ""
 "--root (-r) ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢Ì䤤¹ç¤ï¤»¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹ºÆ¹½ÃÛ»þ¤Î¤ß»ØÄê¤Ç"
 "¤­¤Þ¤¹"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "½ð̾¤¹¤ë¤¿¤á¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 #, fuzzy
 msgid "pgp not found: "
 msgstr "pgp ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤ÏÀµ¾ï¤Ç¤¹¡¥\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign ¤Ï¥Ñ¥Ã¥±¡¼¥¸ºîÀ®»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "¼Â¹Ô¼ºÇÔ\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "ºÆºîÀ®¤¹¤ë¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "½ð̾¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "¸¡¾Ú¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¤Î°ú¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó"
@@ -545,180 +545,180 @@ msgstr "&& 
 msgid "syntax error in expression\n"
 msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK ¼ºÇÔ: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó %s(%s "
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "̵¸ú¤Ê %s ¤Î¥È¡¼¥¯¥ó: %s"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: build/files.c:545
+#: build/files.c:548
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() ¤Ë³¤¯¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "ÉÔÀµ¤Êʸˡ: %s(%s)"
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "ÉÔÀµ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
 
-#: build/files.c:756
+#: build/files.c:759
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "°Û¾ï¤Ê¥í¥«¡¼¥ëĹ: \"%.*s\"  %%lang(%s)"
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Ê£¿ô¤Î¥í¥«¡¼¥ë %.*s %%lang(%s)"
 
-#: build/files.c:924
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdir ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿"
 
-#: build/files.c:930
+#: build/files.c:933
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir ¤Î°ú¿ô¤Ï1¤Ä¤Î¤ß¤Ç¤¹"
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "1¹Ô¤Ë2¤Ä¤Î¥Õ¥¡¥¤¥ë: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï \"/\" ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:986
+#: build/files.c:989
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "¾¤Î¥Õ¥©¡¼¥à¤ÇÆÃÊ̤ʠ%%doc ¤òº®¤¼¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s ¼ºÇÔ"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy ¤Ç½ñ¤­¹þ¤ß¼ºÇÔ: %s"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy ¤ÇÆɤ߹þ¤ß¼ºÇÔ: %s"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "PreIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "PreUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "PostIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "PostUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "VerifyScript ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "¥È¥ê¥¬¡¼¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: %s ¤Î¥ª¡¼¥×¥ó: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: %s ¤ÎÆɤ߹þ¤ß: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: %s ¤«¤é¤Î¥Ø¥Ã¥À¤ÎÆɤ߹þ¤ß\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:500
+#: build/pack.c:502
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "ÉÔÀµ¤Ê CSA ¥Ç¡¼¥¿"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "½ð̾¤ÎÀ¸À®Ãæ: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "sigtarget ¤ÎÆɤ߹þ¤ß¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Î ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s\n"
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
@@ -1423,17 +1423,17 @@ msgstr "
 msgid "lookup i18N strings in specfile catalog"
 msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¥«¥¿¥í¥°Ãæ¤Î I18N Ê¸»úÎó¤òõ¤·¤Æ¤¤¤Þ¤¹"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤ÊÈÖ¹æ: %s"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
@@ -1483,89 +1483,89 @@ msgstr ""
 msgid " failed - "
 msgstr "¼ºÇÔ - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1614,46 +1614,46 @@ msgstr "%s 
 msgid "file %s is on an unknown device\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -2176,315 +2176,315 @@ msgid "generate signature"
 msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã¸þ¤±¤Ç¤¹"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë OS ¸þ¤±¤Ç¤¹"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, fuzzy, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 "¥Õ¥¡¥¤¥ë %s ¤Ï %s-%s-%s ¤È %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s (%s-%s-%s¤è¤ê¤â¿·¤·¤¤¤â¤Î) ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ"
 "¤¹"
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å"
 "¤Ç)"
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å"
 "¤Ç)"
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " %s-%s-%s ¤È¶¥¹ç¤·¤Þ¤¹\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr "¤Ï %s-%s-%s ¤ËɬÍפȤµ¤ì¤Æ¤¤¤Þ¤¹\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "Ä̾ï"
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "¥Í¥Ã¥È¶¦Í­"
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(̤ÃΤΠ%3d)"
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)"
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
@@ -2580,90 +2580,90 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2773,177 +2773,177 @@ msgstr "
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 "¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "¸Å¤¤ PGP ½ð̾\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾!  ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?"
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp ¼ºÇÔ"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg ¼ºÇÔ"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, fuzzy, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "MD5 ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 75f79c6..3429f82 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=EUC-KR\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î Á¦ÀÛ¿¡ ½ÇÆÐÇÔ:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "%s spec ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "tar ÆÄÀÌÇÁ¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s ¿¡¼­ spec ÆÄÀÏÀ» Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "%s ¿¡¼­ %s (À¸)·Î À̸§ º¯°æÇϴµ¥ ½ÇÆÐÇÔ: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "%s ÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s ÆÄÀÏÀº Á¤±Ô(regular) ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s ÆÄÀÏÀº spec ÆÄÀÏÀÌ ¾Æ´Ñ °Í °°½À´Ï´Ù.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "¸ñÇ¥´ë»ó(target) Ç÷§ÆûÀ¸·Î Á¦ÀÛ Áß: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "%s (À»)¸¦ Á¦ÀÛÇÏ°í ÀÖ½À´Ï´Ù\n"
@@ -203,135 +203,135 @@ msgstr "
 msgid "Usage: %s {--help}\n"
 msgstr "\a »ç¿ë¹ý: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "--rcfile ¿É¼ÇÀÌ Á¦°ÅµÇ¾ú½À´Ï´Ù.\n"
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "´ë½Å \"--macros <ÆÄÀÏ:..>\" À» »ç¿ëÇÕ´Ï´Ù.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "(%d) ÀÇ Àμö Ã³¸® °úÁ¤ Áß ³»ºÎ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "ÇϳªÀÇ ÁÖ¿ä(major) ¸ðµå¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÁúÀÇ/°ËÁõ Áß¿¡¼­ ÇÑ°¡Áö À¯ÇüÀº µ¿½Ã¿¡ ¼öÇàµÉ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Ç÷¡±× ÀÔ´Ï´Ù"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Çü½Ä ÀÔ´Ï´Ù"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ ¼Ò½º ÀÔ´Ï´Ù"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath ´Â µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÏÁö ¾Ê±â À§ÇÑ ¿É¼ÇÀÔ´Ï´Ù"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "¼³Ä¡, ¾÷±×·¹À̵å, ¼Ò½º »èÁ¦, spec ÆÄÀÏ »èÁ¦½Ã¿¡¸¸ ¼öÇàµË´Ï´Ù"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÆÄÀÏÀ» Àç¹èÄ¡ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¶Ç´Â --relocate ¿É¼Ç Áß Çϳª¸¸ »ç¿ëÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate ¿Í --excludepath ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇϽǠ¼ö "
 "ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀ۵Ǿî¾ß ÇÕ´Ï´Ù"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¿Í --includedocs ¿É¼Ç¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¿É¼ÇÀº ÆÐÅ°Áö »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "½ºÅ©¸³Æ® ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "Æ®¸®°Å ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -339,13 +339,13 @@ msgstr ""
 "--nodeps ¿É¼ÇÀº ÆÐÅ°Áö Á¦ÀÛ, ÀçÁ¦ÀÛ(rebuild), ÀçÄÄÆÄÀÏ(recompile), ¼³Ä¡, »è"
 "Á¦, °ËÁõ½Ã¿¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, Á¦À۽ÿ¡¸¸ ÁöÁ¤ÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -353,87 +353,87 @@ msgstr ""
 "--root (-r) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, ÁúÀÇ, µ¥ÀÌÅͺ£À̽º À籸Ãà½Ã¿¡¸¸ ÁöÁ¤ÇÏ"
 "½Ç ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀ۵Ǿî¾ß ÇÕ´Ï´Ù"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "¼­¸íÇÒ ÆÄÀÏÀÌ ¾ø½À´Ï´Ù\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "%s ÆÄÀÏ¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp¸¦ Ã£À» ¼ö ¾øÀ½: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Æнº ±¸¹®(pass phrase) ÀÔ·Â: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Æнº ±¸¹®(pass phrase) °Ë»ç¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ¿Ã¹Ù¸¨´Ï´Ù.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign ¿É¼ÇÀº ÆÐÅ°Áö Á¦À۽ÿ¡¸¸ »ç¿ëÇϽǠ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "ÀçÁ¦ÀÛ(rebuild)ÇÒ ÆÐÅ°Áö ÆÄÀÏÀ» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ spec ÆÄÀÏÀ» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ tar ÆÄÀÏÀ» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "¼­¸íÇÒ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "°ËÁõ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¿É¼Ç¿¡ ºÎÀûÀýÇÑ Àμö°¡ ÁöÁ¤µÇ¾ú½À´Ï´Ù "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "ÀӽàÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù.\n"
 
@@ -511,180 +511,180 @@ msgstr "'&&' 
 msgid "syntax error in expression\n"
 msgstr "Ç¥Çö½Ä¿¡¼­ ±¸¹® ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK ½ÇÆÐ: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s %s ¿¡¼­ '(' ¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "%s(%s ¿¡¼­ ')' ¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "ºÎÀûÇÕÇÑ %s ÅäÅ«: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%2$s %3$s ¿¡¼­ %1$s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() ´ÙÀ½¿¡ °ø¹éÀÌ ¾øÀ½: %s\n"
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "À߸øµÈ ±¸¹®: %s(%s)\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "À߸øµÈ ¸ðµå spec: %s(%s)\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "À߸øµÈ dir¸ðµå spec: %s(%s)\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "ºñÁ¤»óÀûÀΠ·ÎÄÉÀÏÀÇ ±æÀÌ: %%lang(%2$s) ÀÇ \"%1$.*s\"\n"
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "%%lang(%2$s) ¿¡ Áߺ¹µÈ ·ÎÄÉÀÏ %1$.*s (ÀÌ)°¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdirÀÌ ÇÑ°è¿¡ À̸£·¶½À´Ï´Ù\n"
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir¿¡´Â ÇϳªÀÇ Àμö¸¸ ÁöÁ¤µÉ ¼ö ÀÖ½À´Ï´Ù\n"
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "ÇϳªÀÇ ÁÙ¿¡ µÎ°³ÀÇ ÆÄÀÏÀÌ Á¸ÀçÇÔ: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "ÆÄÀÏÀº ¹Ýµå½Ã \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "ƯÁ¤ %%docÀ» ´Ù¸¥ Çü½Ä°ú ÇÔ²² »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "ÆÄÀÏ ¸ñ·ÏÀÌ Áߺ¹µÊ: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "BuildRoot¿¡ ½Éº¼¸¯¸µÅ©ÇÔ: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "ÆÄÀÏÀÌ prefix (%s) (¿Í)°ú ÀÏÄ¡ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "ÆÄÀÏ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "globÀ¸·Î ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "ÁÙ(line): %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s (À»)¸¦ fork ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "%s ¿¡ ¸ðµç ÀڷḦ ±â·ÏÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s (À»)¸¦ Ã£´Â Áß: (%s »ç¿ë)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s (À»)¸¦ Ã£´Âµ¥ ½ÇÆÐÇÔ:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ÆÄÀϠ󸮠Áß: %s-%s-%s\n"
@@ -718,152 +718,152 @@ msgstr "
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "È£½ºÆ® ¸íÀ» Á¤±ÔÈ­(canonicalize) ÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "%s ÆÄÀÏ¿¡ ¾ÆÄ«À̺긦 »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "¾ÆÄ«À̺꠻ý¼º¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy ÀÛ¼º¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy Àб⿡ ½ÇÆÐÇÔ: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "PreIn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "PreUn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "PostIn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "PostUn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "VerifyScript ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Æ®¸®°Å ½ºÅ©¸³Æ® ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "RPM Àбâ(readRPM): %s (À»)¸¦ ¿±´Ï´Ù: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "RPM Àбâ(readRPM): %s (À»)¸¦ ÀнÀ´Ï´Ù: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "RPM Àбâ(readRPM): %s (Àº)´Â RPM ÆÐÅ°Áö°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "RPM Àбâ(readRPM): %s ¿¡¼­ Çì´õ¸¦ Àаí ÀÖ½À´Ï´Ù\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 msgid "Unable to create immutable header region.\n"
 msgstr "°íÁ¤ Çì´õ ¿µ¿ª(immutable header region)À» »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù.\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 msgid "Unable to write temp header\n"
 msgstr "ÀÓ½Ã(temp) Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "À߸øµÈ CSA µ¥ÀÌÅÍ\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 msgid "Unable to write final header\n"
 msgstr "¸¶Áö¸·(final) Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "¼­¸í »ý¼º Áß: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 msgid "Unable to reload signature header.\n"
 msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "¼­¸íÇÒ ´ë»ó %s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "%s ÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "%s ¿¡ Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "%s ÀÇ payload¸¦ ÀÐÀ» ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "%s ÆÐÅ°ÁöÀÇ Ãâ·Â ÆÄÀϸíÀ» »ý¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "%s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -1368,17 +1368,17 @@ msgstr "
 msgid "lookup i18N strings in specfile catalog"
 msgstr "specÆÄÀÏ ¸ñ·Ï(catalog)¿¡¼­ i18N ¹®ÀÚ¿­À» Ã£½À´Ï´Ù"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ ¼ýÀÚÀÔ´Ï´Ù: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ no%s ¼ýÀÚÀÔ´Ï´Ù: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ %s ¼ýÀÚÀÔ´Ï´Ù: %s\n"
@@ -1424,70 +1424,70 @@ msgstr "
 msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "À߸øµÈ db ÆÄÀÏ    %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÀÇÁ¸(Depends) Ä³½Ã¿¡ Ãß°¡µÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr "¾Æ´Ï¿À"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr "¿¹"
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1495,20 +1495,20 @@ msgid ""
 msgstr ""
 "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, ±íÀÌ[depth])\n"
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÈÄÀÓÀÚ [successors only] (Ç¥Çö ¼ø)\n"
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr "·çÇÁ(LOOP):\n"
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1557,47 +1557,47 @@ msgstr "%s (
 msgid "file %s is on an unknown device\n"
 msgstr "%s ÆÄÀÏÀÌ ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -2074,313 +2074,313 @@ msgid "generate signature"
 msgstr "¼­¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "%s (Àº)´Â ´Ù¸¥ ¾ÆÅ°ÅØÃĸ¦ À§ÇÑ ÆÐÅ°ÁöÀÔ´Ï´Ù"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "%s (Àº)´Â ´Ù¸¥ ¿î¿µÃ¼Á¦¸¦ À§ÇÑ ÆÐÅ°ÁöÀÔ´Ï´Ù"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "%2$s ÆÐÅ°Áö ¾ÈÀÇ %1$s °æ·Î´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "%2$s (¿Í)°ú %3$s ÀÇ ¼³Ä¡ °úÁ¤¿¡¼­ %1$s ÆÄÀÏÀÌ ¼­·Î Ãæµ¹ÇÕ´Ï´Ù"
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "%2$s ¿¡¼­ ¼³Ä¡µÇ´Â %1$s ÆÄÀÏÀº %3$s ÆÐÅ°ÁöÀÇ ÆÄÀÏ°ú Ãæµ¹ÇÕ´Ï´Ù"
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "%s ÆÐÅ°Áö (%s º¸´Ù ÃÖ½ÅÀÇ ÆÐÅ°Áö)´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 "%4$s ÆÄÀϽýºÅÛ »ó¿¡¼­ %1$s ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ °æ¿ì¿¡´Â %2$ld%3$cb (ÀÌ)°¡ ÇÊ¿äÇÕ"
 "´Ï´Ù"
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 "%3$s ÆÄÀϽýºÅÛ »ó¿¡¼­ %1$s ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ °æ¿ì¿¡´Â %2$ld ÀÇ ¾ÆÀ̳ëµå(inode)"
 "°¡ ÇÊ¿äÇÕ´Ï´Ù"
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 "%s ÆÐÅ°ÁöÀÇ ¼±(pre)-Æ®·£Àè¼Ç ½Ã½ºÅÛÄÝ(syscall): %s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù: %s"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 "%2$s ÆÐÅ°Áö¸¦ Ã³¸®Çϴ °úÁ¤¿¡¼­ ¾Ë ¼ö ¾ø´Â ¿À·ù %1$d (ÀÌ)°¡ ¹ß»ýÇß½À´Ï´Ù"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " %s-%s-%s (¿Í)°ú Ãæµ¹ÇÕ´Ï´Ù\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " (Àº)´Â %s-%s-%s ¿¡¼­ ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇϽǠ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ¿ä±¸µË´Ï´Ù, ¹ÙÀ̳ʸ®¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s (ÀÌ)°¡ %d ÀÇ ÆÄÀÏÀ» °®°í ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ®¸´(scriptlet)°¡ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s (À»)¸¦ »ý·«ÇÕ´Ï"
 "´Ù\n"
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "Á¤»ó(normal)        "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "±³Ã¼µÊ(replaced)    "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ½  "
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "net °øÀ¯µÊ          "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(¾Ë ¼ö ¾ø´Â %3d)    "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s (À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s (À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s (À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s spec ÆÄÀÏÀ» ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù, ÆÄÀÏÀ» ºÐ¼®ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "%s ±×·ìÀº ¾î¶² ÆÐÅ°Áö¿¡µµ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s (À»)¸¦ ¹ß»ý½ÃÅ°´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "%s (À»)¸¦ Àдµ¥ ½ÇÆÐÇÔ: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "%s (À»)¸¦ ¹ß»ý½ÃÅ°´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s (À»)¸¦ ÇÊ¿ä·Î Çϴ ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s (À»)¸¦ Á¦°øÇϴ ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "%s ÆÄÀÏ: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "%s ÆÄÀÏÀº ¾î¶² ÆÐÅ°Áö¿¡µµ ¼ÓÇØ ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr "ÆÐÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "±â·Ï(record) ¹øÈ£ %u (Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö´Â ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "À߸øµÈ db ÆÄÀÏ    %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
@@ -2474,89 +2474,89 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "Áغñ Áß..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s (À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... %s (À¸)·Î\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s (À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s ÆÄÀÏÀÌ ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s (Àº)´Â ¼³Ä¡µÉ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ÀÇ ¼Ò½º¿Í %d ÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÀÌ ÆÐÅ°ÁöµéÀ» Á¦°ÅÇϸé ÀÇÁ¸¼ºÀÌ ±úÁú ¼ö ÀÖÀ½:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s (À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2666,170 +2666,170 @@ msgstr "%s (
 msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÆÄÀÏÀÌ ¿Ã¹Ù¸£Áö(regular) ¾Ê½À´Ï´Ù -- ¿ë·® °Ë»ç¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, 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:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr " ½ÇÁ¦ ¿ë·®: %12d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "ÀÌÀü PGP ¼­¸í\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼­¸í!  ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n"
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "pgp¿¡ ½ÇÆÐÇÔ\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "pgp ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ¼­¸í ¿ë·®: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "¼­¸íÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼­¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "gpg¿¡ ½ÇÆÐÇÔ\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "gpg ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ¼­¸í ¿ë·®: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_gpg_name\" À» ¼³Á¤ÇØ ÁּžߠÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_pgp_name\" À» ¼³Á¤ÇØ ÁּžߠÇÕ´Ï´Ù\n"
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "MD5 ¼­¸íÀº °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "¸¶¿îÆ®µÈ ÆÄÀϽýºÅÛÀÇ ¸ñ·ÏÀ» ¼öÁýÇÏ°í ÀÖ½À´Ï´Ù\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "´ÙÀ½À» Ã£À» ¼ö ¾ø½À´Ï´Ù    %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s ¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 83b41f7..7ca1ae8 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=iso-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "feil med avhengigheter under bygging:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Kunne ikke åpne tar-rør: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Feil under lesing av spec-fil fra %s\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Feil under endring av navn fra %s til %s: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "kunne ikke kjøre stat på %s: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Fil %s er ikke en vanlig fil.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Fil %s ser ikke ut til å være en spec-fil.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Bygger målplattformene: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Bygger for mål %s\n"
@@ -203,122 +203,122 @@ msgstr ""
 msgid "Usage: %s {--help}\n"
 msgstr "Bruk: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Bruk -e eller --erase i stedet.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Intern feil i argumentprosesseringen (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "kun ett større modi kan spesifiseres"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "én type spørring/verifisering kan utføres om gangen"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "uventede flagg for spørring"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "ventet spørringsformat"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "uventet spørringskilde"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath oppgitt for operasjon som ikke bruker en database"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "kun installasjon, oppgradering, rmsource og rmspec kan tvinges"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "filer kan kun omplasseres under pakkeinstallasjon"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "kune en av --prefix eller --relocate kan brukes"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate og --excludepath kan kun brukes ved installasjon av nye pakker"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan kun brukes ved installasjon av nye pakker"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenter til --prefix må begynne med en /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -326,7 +326,7 @@ msgstr ""
 "skript som slår av alternativer kan kun spesifiseres under pakkeinstallasjon "
 "og sletting"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -334,105 +334,105 @@ msgstr ""
 "alternativer som slår av utløsing  kan kun spesifiseres under "
 "pakkeinstallasjon, og sletting"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "ingen filer å signere\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan ikke aksessere fil %s\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp ikke funnet: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Skriv inn passord: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Passordsjekk feilet\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Passord er ok.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "kjøring feilet\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "ingen pakkefiler oppgitt for ombygging"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "ingen spec-fil oppgitt for bygging"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "ingen tar-fil oppgitt for bygging"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ingen pakker oppgitt for signering"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "ingen pakker oppgitt for installering"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "ingen argumenter oppgitt for spørring"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "ingen argumenter oppgitt for verifisering"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "uventede argumenter til --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "ingen argumenter oppgitt for spørring"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
@@ -510,180 +510,180 @@ msgstr "&& og || ikke st
 msgid "syntax error in expression\n"
 msgstr "syntaksfeil i uttrykk\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIDSJEKK feil: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Mangler ')' i %s(%s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ugyldig %s-tegn: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "To filer på én linje: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Filen må begynne med \"/\": %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fil listet to ganger: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke funnet: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig eier/gruppe: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Fil %s: %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linje %d: Filnavn ikke tillatt: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "Installerer %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s feilet\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunne ikke skrive alle data til %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Klarte ikke å finne %s:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -717,156 +717,156 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "feil under oppretting av arkiv %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy skriving feilet: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy: feil under lesing: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Kunne ikke åpne PreIn-fil: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Kunne ikke åpne PreUn-fil: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Kunne ikke åpne PostIn-fil: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Kunne ikke åpne PostUn-fil: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Kunne ikke åpne VerifyScript-fil: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek feilet: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s er ikke en RPM-pakke\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: leser header fra %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Kunne ikke skrive header til %s: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "Ugyldige CSA-data\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Kunne ikke skrive header til %s: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Genererer signatur: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Kunne ikke åpne sigmål %s: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Kunne ikke skrive header til %s: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1369,17 +1369,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linje %d: Ugyldig nummer: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linje %d: Ugyldig no%s nummer: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linje %d: Ugyldig %s-nummer: %s\n"
@@ -1425,85 +1425,85 @@ msgstr ""
 msgid " failed - "
 msgstr " feilet - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakke %s er allerede installert"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "ingen pakker\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr "NEI"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1550,46 +1550,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:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -2060,300 +2060,300 @@ msgid "generate signature"
 msgstr "generer signatur"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "pakke %s er for en annen arkitektur"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "pakke %s er for et annet operativsystem"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "pakke %s er allerede installert"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sti %s i pakke %s kan ikke relokeres"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " er i konflikt med %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " kreves av %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d ikke støttet\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke opprette %%%s %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan ikke skrive til %%%s %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ukorrekt format: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(inneholder ingen filer)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "erstattet     "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "ikke installert"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "delt via nett "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ukjent %3d)  "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(ingen tilstand)"
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "pakken har verken fileier eller id-lister\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kan ikke spørre på %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "feil under åpning av %s: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "spørring på %s feilet\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: lesing av manifest feilet: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "ingen pakker\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "gruppe %s inneholder ingen pakker\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "kunne ikke opprette %s: %s\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ingen pakke krever %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ingen pakke gir %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s eies ikke av noen pakke\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ugyldig pakkenummer: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2444,89 +2444,89 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "Forbereder..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker for installasjon..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Henter %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hopper over %s - overføring feilet - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, 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:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2636,169 +2636,169 @@ msgstr "Kunne ikke 
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunne ikke kjøre %s: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "For stor header"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "hopp over MD5-signaturer"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterte filsystemer\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "mangler    %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "feilede avhengigheter:\n"
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 2bd3f13..c037113 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -16,53 +16,53 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku spec: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Otwarcie potoku tara nie powiod³o siê: %s\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Odczytanie pliku spec z %s nie powiod³o siê\n"
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Zmiana nazwy %s na %s nie powiod³a siê\n"
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "stat nie powiod³o siê %s: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Plik: %s nie jest regularnym plikiem\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s nie wygl±da na pakiet RPM\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Budowanie dla platform: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Budowanie dla %s\n"
@@ -212,138 +212,138 @@ msgstr "Program mo
 msgid "Usage: %s {--help}\n"
 msgstr "U¿ycie: rpm {--help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "U¿yj -e lub --erase\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "tylko jeden typ odpytywania/sprawdzania mo¿na wykonaæ na raz"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate i --excludepath mo¿na u¿yæ tylko w trakcie instalacji nowych "
 "pakietów"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¿na u¿yæ tylko w trakcie instalacji nowych pakietów"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -352,14 +352,14 @@ msgstr ""
 "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub "
 "sprawdzania pakietów"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub budowania pakietów"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -367,87 +367,87 @@ msgstr ""
 "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania "
 "pakietów lub przebudowywania bazy"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "brak dostêpu do pliku %s\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "nie znaleziono pgp: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Podaj has³o: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Weryfikacja has³a nieudana\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Has³o jest prawid³owe.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "nie podano nazw pakietów do przebudowania"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "nie podano nazw plików spec do budowania"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "nie podano nazw plików tar do budowania"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nie podano nazwy pakietu do podpisania"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "nie podano argumentów dla sprawdzania"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "nieoczekiwane argumenty dla --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Nie mo¿na otworzyæ pliku tymczasowego"
@@ -535,180 +535,180 @@ msgstr "&& i || nie jest wspierane dla 
 msgid "syntax error in expression\n"
 msgstr "b³±d sk³adni w wyra¿eniu"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK nie powiod³o siê: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Brak '(' w %s %s"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Brak ')' w %s(%s"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "B³êdny znak %s: %s"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Brak '(' w %s %s"
 
-#: build/files.c:545
+#: build/files.c:548
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Brak bia³ego znaku po %s(): %s"
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "B³êdna sk³adnia: %s(%s)"
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "B³êdne okre¶lenie trybu: %s(%s)"
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "B³êdne okre¶lenie dirmode: %s(%s)"
 
-#: build/files.c:756
+#: build/files.c:759
 #, 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:767
+#: build/files.c:770
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)"
 
-#: build/files.c:924
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Limit trafieñ dla %%docdir"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dwa pliki w jedenj linii: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Plik podany dwukrotnie: %s"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, 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:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linia %d: Wersja niedozwolona: %s"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Nie znaleziono pliku: %s"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "linia: %s"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie mo¿na wykonaæ fork na %s"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s nie powiod³o siê"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, 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:2521
+#: build/files.c:2524
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Wyszukiwanie wymaganych zasobów...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Wyszukiwanie nie powiod³o siê"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s\n"
@@ -742,157 +742,157 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Nie mo¿na rozwi±zaæ nazwy systemu: %s\n"
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, 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:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "zapis w trybie cpio_copy nie powiód³ siê: %s"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "odczyt w trybie cpio_copy nie powiód³ siê: %s"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PreIn: %s"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PreUn: %s"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PostIn: %s"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku PostUn: %s"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku VerifyScript: %s"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Nie mo¿na otworzyæ skryptu Trigger: %s"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otwieranie %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: czytanie %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s nie jest pakietem RPM\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: czytanie nag³ówka z %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nie mo¿na zapisaæ %s"
 
-#: build/pack.c:500
+#: build/pack.c:502
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "B³êdne dane CSA"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nie mo¿na zapisaæ %s"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Generowanie sygnatury: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nie mo¿na odczytaæ sigtarget: %s"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "nie mo¿na utworzyæ %s"
@@ -1408,17 +1408,17 @@ msgstr "wymu
 msgid "lookup i18N strings in specfile catalog"
 msgstr "wyszukaj wpisy I18N w katalogu speca"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linia %d: B³êdny numer: %s"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linia %d: b³êdny numer no%s: %d"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linia %d: B³êdny numer %s: %s\n"
@@ -1465,90 +1465,90 @@ msgstr ""
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "Udostêpniane zasoby:"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 #, fuzzy
 msgid "NO "
 msgstr "NIE DOBRZE"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1597,46 +1597,46 @@ msgstr "nie mo
 msgid "file %s is on an unknown device\n"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linia %d: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
@@ -2141,307 +2141,307 @@ msgid "generate signature"
 msgstr "generuj sygnaturê PGP/GPG"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, 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/problems.c:280
+#: lib/problems.c:281
 #, 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/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, 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/problems.c:293
+#: lib/problems.c:294
 #, 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/problems.c:298
+#: lib/problems.c:299
 #, 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/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " jest w konflikcie z %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " jest wymagany przez %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 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:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, 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:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, 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:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "b³±d w formacie: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(nie zawiera plików)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normalny      "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "zast±piony    "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "niezainstalowany"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "udostêpniony w sieci"
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(nieznany %3d)"
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(brak statusu)"
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "odpytywanie %s nie powiod³o siê\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Odczytanie %s nie powiod³o siê: %s."
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¿aden pakiet nie wymaga %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¿aden pakiet nie udostêpnia %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "b³êdny numer pakietu: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "numer rekordu pakietu: %d\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "Udostêpniane zasoby:"
@@ -2534,90 +2534,90 @@ msgstr "       rpm {--version}"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM\n"
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, 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:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2727,176 +2727,176 @@ msgstr "Nie mo
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Stara sygnatura PGP\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, 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:225
+#: lib/signature.c:226
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp nie powiod³o siê"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "rozmiar sygnatury PGP: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nie mo¿na odczytaæ sygnatury"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Mam %d bajtów sygnatury PGP\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg nie powiod³o siê"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "rozmiar sygnatury GPG: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "pomiñ wszelkie sygnatury MD5"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "brak    %s\n"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 9d831ba..cd16643 100644 (file)
@@ -4,61 +4,61 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-0400\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "lista dependncias do pacote"
 
 # , c-format
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "no foi passado pacote para instalao"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "instale pacote"
@@ -218,139 +218,139 @@ msgstr ""
 msgid "Usage: %s {--help}\n"
 msgstr "uso: rpm {--help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Use -e ou --erase no lugar.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "somente um modo principal pode ser especificado"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "um tipo de pesquisa/verificao pode ser feita por vez"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath passado para uma operao que no usa um banco de dados"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "somente instalao e atualizao podem ser foradas"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumentos para --prefix devem comear com uma /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) somente podem ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--excludedocs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--includedocs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--ignorearch somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--allmatches somente pode ser especificado durante desinstalaes de pacotes"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -359,7 +359,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -368,7 +368,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -377,7 +377,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalaes e verificaes "
 "de pacotes"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -385,7 +385,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -393,90 +393,90 @@ msgstr ""
 "--root (-r) somente pode ser especificado durante [des]instalaes, pesquisas "
 "e reconstruo de bancos de dados"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumentos para --root (-r) devem comear com uma /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 #, fuzzy
 msgid "pgp not found: "
 msgstr "no foi passado pacote para desinstalao"
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Checagem de pass phrase falhou\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Pass phrase ok.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign somente pode ser usado durante a construo de pacotes"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Construo falhou.\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "no foram passados pacotes para reconstruo"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "no foi passado arquivo spec para construo"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "no foram passados arquivos tar para construo"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "no foram passados pacotes para assinatura"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "no foi passado argumento para pesquisa"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "no foi passado argumento para verificao"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos no esperados em --querytags"
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "no foi passado argumento para pesquisa"
 
 # , c-format
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, 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:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:593
+#: build/files.c:596
 #, 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:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1523
+#: build/files.c:1526
 #, 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:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1603
+#: build/files.c:1606
 #, 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:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
 # , c-format
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1812
+#: build/files.c:1815
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, 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:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:258
+#: build/pack.c:260
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:286
+#: build/pack.c:288
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:296
+#: build/pack.c:298
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "gere assinatura PGP"
 
 # , c-format
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
 # , c-format
-#: build/pack.c:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1520,18 +1520,18 @@ msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
 # , c-format
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
@@ -1578,88 +1578,88 @@ msgstr ""
 msgid " failed - "
 msgstr "Construo falhou.\n"
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "pesquise todos os pacotes"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
 # , c-format
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1709,50 +1709,50 @@ msgstr "No consegui abrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2265,310 +2265,310 @@ msgid "generate signature"
 msgstr "gere assinatura PGP"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "conflicts with"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "is needed by"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "no execute nenhum estgio"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 #, fuzzy
 msgid "not installed "
 msgstr "no foi passado pacote para instalao"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
 # , c-format
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "pesquise todos os pacotes"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "no foram passados pacotes para assinatura"
 
 # , c-format
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "no foram passados pacotes para assinatura"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2664,11 +2664,11 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "no foi passado pacote para instalao"
@@ -2681,86 +2681,86 @@ msgstr "no foi passado pacote para instalao"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 #, fuzzy
 msgid "failed dependencies:\n"
 msgstr "lista dependncias do pacote"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 #, fuzzy
 msgid "removing these packages would break dependencies:\n"
 msgstr "lista dependncias do pacote"
 
 # , c-format
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "no foi passado pacote para desinstalao"
@@ -2878,151 +2878,151 @@ msgstr "No consegui abrir: %s\n"
 msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
 # , c-format
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "Construo falhou.\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "Construo falhou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "desconsidere quaisquer assinaturas MD5"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3036,26 +3036,26 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "lista dependncias do pacote"
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 1121636..3253749 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr ""
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr ""
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr ""
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr ""
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr ""
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr ""
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
@@ -201,229 +201,229 @@ msgstr ""
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr ""
 
@@ -498,180 +498,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr ""
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr ""
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr ""
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr ""
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:471
+#: build/pack.c:473
 msgid "Unable to create immutable header region.\n"
 msgstr ""
 
-#: build/pack.c:490
+#: build/pack.c:492
 msgid "Unable to write temp header\n"
 msgstr ""
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 msgid "Unable to write final header\n"
 msgstr ""
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:574
+#: build/pack.c:576
 msgid "Unable to reload signature header.\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr ""
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1348,17 +1348,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
@@ -1404,84 +1404,84 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1528,46 +1528,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2021,298 +2021,298 @@ msgid "generate signature"
 msgstr ""
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "conflicts with"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "is needed by"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr ""
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2403,89 +2403,89 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2595,167 +2595,167 @@ msgstr ""
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 1c4806c..a61d463 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -15,53 +15,53 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr ""
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr ""
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr ""
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr ""
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr ""
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr ""
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
@@ -207,229 +207,229 @@ msgstr ""
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 msgid "no arguments given"
 msgstr ""
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr ""
 
@@ -504,180 +504,180 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr ""
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr ""
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr ""
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr ""
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr ""
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr ""
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr ""
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr ""
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr ""
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr ""
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr ""
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr ""
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr ""
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr ""
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr ""
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr ""
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: build/pack.c:471
+#: build/pack.c:473
 msgid "Unable to create immutable header region.\n"
 msgstr ""
 
-#: build/pack.c:490
+#: build/pack.c:492
 msgid "Unable to write temp header\n"
 msgstr ""
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 msgid "Unable to write final header\n"
 msgstr ""
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr ""
 
-#: build/pack.c:574
+#: build/pack.c:576
 msgid "Unable to reload signature header.\n"
 msgstr ""
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr ""
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr ""
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr ""
@@ -1354,17 +1354,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
@@ -1410,84 +1410,84 @@ msgstr ""
 msgid " failed - "
 msgstr ""
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 msgid "(rpmrc provides)"
 msgstr ""
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 msgid "(rpmlib provides)"
 msgstr ""
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 msgid "(db files)"
 msgstr ""
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 msgid "(db provides)"
 msgstr ""
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 msgid "(db package)"
 msgstr ""
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1534,46 +1534,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2027,298 +2027,298 @@ msgid "generate signature"
 msgstr ""
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr ""
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr ""
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr ""
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "conflicts with"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 msgid "is needed by"
 msgstr ""
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr ""
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr ""
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, c-format
 msgid "malformed %s: %s\n"
 msgstr ""
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, c-format
 msgid "no package matches %s: %s\n"
 msgstr ""
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 msgid "(added provide)"
 msgstr ""
 
@@ -2409,89 +2409,89 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2601,167 +2601,167 @@ msgstr ""
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, c-format
 msgid "Could not exec %s: %s\n"
 msgstr ""
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr ""
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr ""
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 msgid "V3 RSA/MD5 signature: "
 msgstr ""
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 msgid "V3 DSA signature: "
 msgstr ""
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 5da9e96..d5961b2 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -11,53 +11,53 @@ msgstr ""
 "Date: 1999-04-03 12:20+0200\n"
 "X-Generator: KBabel 0.8\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÓÂÏÒËÉ:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ËÁÎÁÌÁ tar: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÉÚ %s\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "îÅ ÏÂÙÞÎÙÊ ÆÁÊÌ: %s.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "æÁÊÌ %s ÎÅ ÐÏÈÏÖ ÎÁ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "ðÌÁÔÆÏÒÍÙ ÄÌÑ ÓÂÏÒËÉ: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "óÂÏÒËÁ ÄÌÑ ÐÌÁÔÆÏÒÍÙ %s\n"
@@ -205,128 +205,128 @@ msgstr "
 msgid "Usage: %s {--help}\n"
 msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "×ÁÒÉÁÎÔ --rcfile ÂÏÌØÛÅ ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ.\n"
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "÷ÍÅÓÔÏ ÜÔÏÇÏ ÉÓÐÏÌØÚÕÊÔÅ \"--macros <ÆÁÊÌ:...>\".\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÚÁ ÏÄÉΠÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅΠÔÏÌØËÏ ÏÄÉΠÔÉРÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÆÌÁÇÉ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "ÐÁÒÁÍÅÔÒ --dbpath ÚÁÄÁΠÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× "
 "É ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ×ÁÒÉÁÎÔÏ× --prefix ÉÌÉ --relocate"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "×ÁÒÉÁÎÔÙ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ "
 "ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "×ÁÒÉÁÎÔ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÐÁÒÁÍÅÔÒÏ× --excludedocs ÉÌÉ --"
 "includedocs"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -334,7 +334,7 @@ msgstr ""
 "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÓÃÅÎÁÒÉÅ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ "
 "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -342,7 +342,7 @@ msgstr ""
 "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÔÒÉÇÇÅÒÏ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ "
 "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ(Ï×)"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -350,14 +350,14 @@ msgstr ""
 "--nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÐÒÏ×ÅÒËÉ "
 "ÐÁËÅÔÏ×"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,87 +365,87 @@ msgstr ""
 "--root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, ÚÁÐÒÏÓÁÈ "
 "ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "ÎÅÔ ÆÁÊÌÏ× ÄÌÑ ÐÏÄÐÉÓÉ\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp ÎÅ ÎÁÊÄÅÎ: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "÷×ÅÄÉÔÅ ËÌÀÞÅ×ÕÀ ÆÒÁÚÕ: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "îÅ×ÅÒÎÁÑ ËÌÀÞÅ×ÁÑ ÆÒÁÚÁ\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "ëÌÀÞÅ×ÁÑ ÆÒÁÚÁ ÐÒÉÎÑÔÁ.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "ÎÅ ÚÁÄÁΠÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÏÄÐÉÓÉ"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ.\n"
 
@@ -523,180 +523,180 @@ msgstr "&& 
 msgid "syntax error in expression\n"
 msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "ïÛÉÂËÁ TIMECHECK: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s(%s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅΠ%s: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ %s × %s %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "îÅ ÐÒÏÂÅÌ ÓÌÅÄÕÅÔ ÐÏÓÌÅ %s(): %s\n"
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ: %s(%s)\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á: %s(%s)\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(%s)\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)\n"
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÙÛÅÎ\n"
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "ôÏÌØËÏ ÏÄÉΠÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "ä×Á ÆÁÊÌÁ × ÏÄÎÏÊ ÓÔÒÏËÅ: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s\n"
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "æÁÊÌ ÕËÁÚÁΠÄ×ÁÖÄÙ: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "ÓÔÒÏËÁ: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@@ -730,152 +730,152 @@ msgstr "getGidS: 
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÑ ËÏÍÐØÀÔÅÒÁ: %s\n"
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy: ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy: ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreIn: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreUn: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostIn: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostUn: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ VerifyScript: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ Trigger script: %s\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: ÏÔËÒÙÔÉÅ %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: ÞÔÅÎÉÅ %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fseek: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s  ÎÅ Ñ×ÌÑÅÔÓÑ ÐÁËÅÔÏÍ RPM\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: ÞÉÔÁÅÔÓÑ ÚÁÇÏÌÏ×ÏË ÉÚ %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 msgid "Unable to create immutable header region.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÍÅÓÔÉÔØ ÚÁÇÏÌÏ×ÏË × ÎÅÒÐÅÒÙ×ÎÕÀ ÏÂÌÁÓÔØ ÐÁÍÑÔÉ.\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 msgid "Unable to write temp header\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ×ÒÅÍÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "îÅ×ÅÒÎÙÅ ÄÁÎÎÙÅ CSA\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 msgid "Unable to write final header\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÏËÏÎÞÁÔÅÌØÎÙÊ ÚÁÇÏÌÏ×ÏË\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 msgid "Unable to reload signature header.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ.\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÇÏÌÏ×ÏË ÉÚ %s: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÚÁÇÏÌÏ×ÏË × %s: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÉÚ %s: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
@@ -1386,17 +1386,17 @@ msgstr "
 msgid "lookup i18N strings in specfile catalog"
 msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
@@ -1442,70 +1442,70 @@ msgstr "
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s YES (rpmrc provides)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s YES (rpmlib provides)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s YES (db provides)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr "îåT"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr "äá"
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1514,20 +1514,20 @@ msgstr ""
 "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
 "ÇÌÕÂÉÎÁ)\n"
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr "ãéëì:\n"
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1576,47 +1576,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -2093,301 +2093,301 @@ msgid "generate signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "ÐÕÔØ %s × ÐÁËÅÔÅ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s É %s"
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "ÆÁÊÌ %s ÉÚ ÕÓÔÁÎÏ×ÌÅÎÎÏÇÏ ÐÁËÅÔÁ %s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s"
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "ÐÁËÅÔ %s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld%cb ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld inodes ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "ÐÁËÅÔ %s pre-transaction syscall(s): %s: ÏÛÉÂËÁ: %s"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " ÎÕÖÅΠÄÌÑ %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "ÎÏÒÍÁÌØÎÙÊ    "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "ÚÁÍÅÎÅÎÎÙÊ    "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅΠ"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "ÓÅÔÅ×ÏÊ       "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ÎÅÉÚ×. %3d)  "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(ÓÏÓÔ. ÎÅÔ)   "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ÓÐÉÓËÁ ÆÁÊÌÏ×: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "ÚÁÐÒÏÓ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ %s: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "ÆÁÊÌ %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s YES (db provides)\n"
@@ -2481,89 +2481,89 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ ÐÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2673,171 +2673,171 @@ msgstr "
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÎÅÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, 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:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "æÁËÔÉÞÅÓËÉÊ ÒÁÚÍÅÒ: %12d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "óÔÁÒÁÑ ÐÏÄÐÉÓØ PGP\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr ""
 "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n"
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "ÏÛÉÂËÁ pgp\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "ÏÛÉÂËÁ gpg\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "ÐÏÌÕÞÅÎÉÅ ÓÐÉÓËÁ ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: ÎÅÐÒÁ×ÉÌØÎÁÑ ÐÏÄÐÉÓØ ÏÂÌÁÓÔÉ ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ\n"
index 4218f50..c77b30e 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,54 +9,54 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Nie je mo¾né otvori» spec súbor: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Otvorenie rúry pre tar zlyhalo: %s\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Nie je mo¾né preèíta» spec súbor z %s\n"
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Nie je mo¾né premenova» %s na %s: %s\n"
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "nepodarilo sa zisti» stav %s: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Súbor nie je obyèajný súbor: %s\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s zrejme nie je RPM balík\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, fuzzy, c-format
 msgid "Building target platforms: %s\n"
 msgstr "predefinova» cieµovú platformu"
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "vyhµadáva sa balík %s\n"
@@ -206,141 +206,141 @@ msgstr "Program m
 msgid "Usage: %s {--help}\n"
 msgstr "pou¾itie: rpm {--help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "naraz mô¾e by» vykonaný jeden typ otázky alebo overenia"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "iba in¹talácia, aktualizácia a odstránenie zdrojov mô¾u by» vynútené"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "súbory mô¾u by» presunuté iba poèas inètalácie balíka"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "mo¾e by» pou¾itá iba jedna z volieb --prefix a --relocate"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate a --excludepath mô¾u by» pou¾ité iba poèas in¹talácie nových "
 "balíkov"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mô¾e by» pou¾itý iba poèas in¹talácie nových balíkov"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pre --prefix musia zaèína» znakom /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mô¾e by» pou¾itý iba poèas in¹talácie balíka"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "mô¾e by» pou¾itá iba jedna voµba z --excludedocs a --includedocs"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mô¾e by» pou¾ité iba poèas odstránenia balíkov"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -349,7 +349,7 @@ msgstr ""
 "--nodeps mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo overenia "
 "balíka"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +357,7 @@ msgstr ""
 "--test mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo zostavenia "
 "balíka"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,87 +365,87 @@ msgstr ""
 "--root (-r) mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka, "
 "otázky alebo znovuzostavenia databázy"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pre --root (-r) musia zaèína» znakom /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "nie je mo¾né pracova» so súborom %s\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp nebolo nájdené: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Kontrola hesla zlyhala\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Heslo je v poriadku.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "neboli zadané ¾iadne balíky na podpis"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "neboli zadané ¾iadne argumenty pre overenie"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "neoèakávané argumenty pre --querytags"
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, 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:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "chyba PREKROÈENIA ÈASU: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Chybný %s prvok: %s"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Chybná %s() syntax: %s"
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Chybná ¹pecifikácia práv %s(): %s"
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
 
-#: build/files.c:756
+#: build/files.c:759
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
-#: build/files.c:924
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosiahnutý limit pre %%docdir"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dva súbory na riadku: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Súbory musia zaèína» znakom \"/\": %s"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Súbor zadaný dvakrát: %s."
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Súbor nesúhlasí s prefixom (%s): %s."
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, 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:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, 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:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "riadok: %s"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Nie je mo¾né vytvori» proces %s"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s zlyhalo"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, 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:2521
+#: build/files.c:2524
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, 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:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy zápis zlyhal: %s"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy èítanie zlyhalo: %s"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Nie je mo¾né otvori» PreIn súbor: %s"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Nie je mo¾né otvori» PreUn súbor: %s"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Nie je mo¾né otvori» PostIn súbor: %s"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Nie je mo¾né otvori» PostUn súbor: %s"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Nie je mo¾né otvori» VerifyScript súbor: %s"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, 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:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otvorenie %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: èítanie %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s nie je RPM balík\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: èítanie hlavièky %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Nie je mo¾né zapísa» %s"
 
-#: build/pack.c:500
+#: build/pack.c:502
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "Chybné CSA dáta"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Nie je mo¾né zapísa» %s"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Vytvára sa PGP podpis: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Nie je preèíta» sigtarget: %s"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, 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:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, 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:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
@@ -1407,17 +1407,17 @@ msgstr "predefinova
 msgid "lookup i18N strings in specfile catalog"
 msgstr "pre preklad re»azcov pou¾i» katalóg správ spec-súborov"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "riadok %d: Chybné èíslo: %s"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "riadok %d: Chybné no%s èíslo: %d"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "riadok %d: Chybné %s èíslo: %s\n"
@@ -1464,90 +1464,90 @@ msgstr ""
 msgid " failed - "
 msgstr " zlyhalo - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, 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:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "Poskytuje:"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 #, fuzzy
 msgid "NO "
 msgstr "NIE JE V PORIADKU"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1596,46 +1596,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:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -2140,305 +2140,305 @@ msgid "generate signature"
 msgstr "vytvori» PGP/GPG podpis"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr ""
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:265
+#: lib/problems.c:266
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " je vy¾adované %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 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:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:882
+#: lib/psm.c:889
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "chyba formátu: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾iadne súbory)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normálny      "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "nahradený     "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "nein¹talovaný "
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "zdieµaný      "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámy %d)  "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(¾iadny stav) "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "otázka na %s zlyhala\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾iadne balíky\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Nie je mo¾né preèíta» %s: %s."
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾iadny z balíkov nevy¾aduje %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾iadny z balíkov neposkytuje %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "chybné èíslo balíku: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "po¾aduje sa záznam èíslo %d\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "Poskytuje:"
@@ -2531,90 +2531,90 @@ msgstr "          rpm {--version}"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, 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:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2724,176 +2724,176 @@ msgstr "Nie je mo
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, 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:225
+#: lib/signature.c:226
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp zlyhalo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Veµkos» PGP podpisu: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "nie je mo¾né preèíta» podpis"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg zlyhalo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Veµkos» GPG podpisu: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Priveµká hlavièka"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "vynecha» akékoµvek MD5 podpisy"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index c08c8f3..e21b451 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.235 2002/04/10 20:01:04 jbj Exp $
+# $Id: sl.po,v 1.236 2002/04/11 16:55:27 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -14,53 +14,53 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "izdelava soodvisnosti je bila neuspe¹na:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Datoteke s specifikacijami %s ni mo¾no odpreti: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Povezava s programom tar je bila neuspe¹na: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Neuspe¹no branje datoteke s specifikacijami iz %s"
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Preimenovanje %s v %s je bilo neuspe¹no: %m"
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "status %s ni na voljo: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Datoteka ni obièajna datoteka: %s\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Ne ka¾e, da je %s datoteka s specifikacijami."
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Izgradnja za ciljna strojna okolja: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Izgradnja za ciljni sistem %s\n"
@@ -210,137 +210,137 @@ msgstr "Ta program je dovoljeno razpe
 msgid "Usage: %s {--help}\n"
 msgstr "Uporaba: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Namesto njiju uporabite -e ali --erase.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "izbran sme biti le en glavni naèin"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo en tip poizvedbe/preverjanja je mo¾en naenkrat"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "neprièakovane zastavice pri poizvedbi"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "neprièakovana oblika poizvedbe"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "neprièakovan izvor poizvedbe"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podan, vendar, èeprav nepotreben"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "datoteke smemo premakniti samo med namestitvijo paketa"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "izbiri --prefix in --relocate se medsebojno izkljuèujeta"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "izbiri --relocate in --excludepath se lahko uporabi le pri namestitvi"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix se sme uporabiti le pri namestitvi"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti izbire --prefix se morajo zaèeti z /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sme biti podatn le ob namestitvi paketa"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "izbiri --excludedocs in --includedocs se medsebojno izkljuèujeta"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sme podan le ob namestitvi paketa"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sme biti podan le ob odstranitvi paketa"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sme biti podati le ob namestitvi paketa"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -348,14 +348,14 @@ msgstr ""
 "--nodeps sme biti podan le ob izgradnji, vnovièni izgradnji, prevajanju, "
 "namestitvi, odstranitvi ali preverjanju paketa"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test sme biti podan le ob namestitvi, odstranitvi ali izgradnji paketa"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -363,87 +363,87 @@ msgstr ""
 "--root (-r) sme biti podan le ob namestitvi, odstranitvi poizvedbi ali "
 "vnovièni izgradnji paketa"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti izbire --root (-r) se morajo zaèeti z /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "ni datotek, ki bi jih lahko podpisal\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "dostop do datoteke %s ni mo¾en\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp manjka: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Vnesite pristopno geslo: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Preverjanje pristopnega gesla neuspe¹no\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Pristopno geslo je pravo.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Neveljaven %%_signature v makro-datoteki.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign sme biti podan le ob izgradnji paketa"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "izvajanje je bilo neuspe¹no\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "paketi za vnovièno izgradnjo niso navedeni"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "datoteka spec za izgradnjo manjka"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "arhiv tar za izgradnjo manjka"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "paketi katere bi bilo potrebno podpisati niso navedeni"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "paketi katere bi bilo potrebno namestiti niso navedeni"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "argumenti za poizvedbo niso podani"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "argumenti za preverjanje niso podani"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "neprièakovani argumenti za --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "argumenti za poizvedbo niso podani"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, fuzzy
 msgid "Unable to open temp file.\n"
 msgstr "Zaèasne datoteke ni mo¾no odpreti"
@@ -531,180 +531,180 @@ msgstr "&& in || nista podprta za nize"
 msgid "syntax error in expression\n"
 msgstr "napaka v sklanji izraza"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK neuspe¹en: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Manjkajoèi ,)` v %s(%s"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Neveljaven ¾eton %s: %s"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: build/files.c:545
+#: build/files.c:548
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Neprazen znak sledi %s(): %s"
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Nepravilna skladnja: %s(%s)"
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Nepravilno doloèilo naèina: %s(%s)"
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Nepravilno doloèilo naèina imenika: %s(%s)"
 
-#: build/files.c:756
+#: build/files.c:759
 #, 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:767
+#: build/files.c:770
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Podvojeni locale %.*s za %%lang(%s)"
 
-#: build/files.c:924
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosegli smo omejitev za %%docdir"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dve datoteki v eni vrstici: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Ime datoteke se mora zaèeti z \"/\": %s"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Datoteka je navedena dvakrat: %s"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, fuzzy, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Datoteka se ne ujema s predpono (%s): %s"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteke ni mogoèe najti: %s"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Neobstojeè lastnik/skupina: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Datoteki manjka uvodni \"/\": %s"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "vrstica %d: Razlièica ni dovoljena: %s"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, 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:1812
+#: build/files.c:1815
 #, 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:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "vrstica: %s"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Vejitev %s ni mo¾na: %s"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "%s neuspe¹en"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "pisanje podatkov v %s je bilo neuspe¹no"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Iskanje  %s: (z uporabo %s)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "Neuspe¹no iskanje %s:"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -738,157 +738,157 @@ msgstr ""
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Iskanje kanoniènega imena gostitelja je bilo neuspe¹no: %s\n"
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, 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:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspe¹no: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "pisanje cpio_copy neuspe¹no: %s"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "branje cpio_copy neuspe¹no: %s"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Datoteke PreIn ni mo¾no odpreti: %s"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Datoteke PreUn ni mo¾no odpreti: %s"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Datoteke PostIn ni mo¾no odpreti: %s"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Datoteke PostUn ni mo¾no odpreti: %s"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Datoteke VerifyScript ni mo¾no odpreti: %s"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, fuzzy, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Skriptne datoteke Trigger ni mo¾no odpreti: %s"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: odpiranje %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: branje %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s ni paket tipa RPM\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: branje glave %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:500
+#: build/pack.c:502
 #, fuzzy
 msgid "Bad CSA data\n"
 msgstr "Po¹kodovani podatki CSA"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Izdelujemo podpis: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Ciljnega podpisa %s ni mo¾no odpreti: %s"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
@@ -1408,17 +1408,17 @@ msgstr "brez upo
 msgid "lookup i18N strings in specfile catalog"
 msgstr "upo¹tevanje internacionalizirana sporoèila v katalogu spec"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "vrstica %d: Napaèno ¹tevilo: %s"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "vrstica %d: Napaèno ¹tevilo no%s: %d"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n"
@@ -1465,90 +1465,90 @@ msgstr ""
 msgid " failed - "
 msgstr " neuspe¹no - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, 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:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "ni paketov\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 #, fuzzy
 msgid "NO "
 msgstr "NI DOBRO"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, fuzzy, c-format
 msgid "removing %s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1597,46 +1597,46 @@ msgstr "neuspe
 msgid "file %s is on an unknown device\n"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -2138,306 +2138,306 @@ msgid "generate signature"
 msgstr "izdelava podpisa PGP/GPG"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paket %s-%s-%s je za drug tip arhitekture"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paket %s-%s-%s je za drug operacijski sistem"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paketa %s ni mo¾no prestaviti\n"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, 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/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, 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/problems.c:280
+#: lib/problems.c:281
 #, 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/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " je v sporu z %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " potrebuje %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "pisanje na %s ni mo¾no"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, 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:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "napaka v obliki: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(ne vsebuje datotek)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normalno      "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "nadome¹èeno   "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "ni name¹èeno  "
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "omre¾ni       "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznano %3d) "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(brez stanja) "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "ni mo¾no poizvedeti o %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "poizvedba po %s je bila neuspe¹na\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "poizvedba po datoteki spec. %s je bila neuspe¹na, razèlemba ni mo¾na\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "ni paketov\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s ne vsebuje nobenega paketa\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "noben paket ne pro¾i %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Neuspe¹no branje %s: %s."
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "noben paket ne pro¾i %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "noben paket ne potrebuje %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "noben paket ne nudi %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "datoteka %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ni del nobenega paketa\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neveljavna ¹tevilka paketa: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "¹tevilka zapisa paketa: %d\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s DA (db ponudbe)\n"
@@ -2531,90 +2531,90 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "paketi za namestitev niso navedeni"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketa %s ni mo¾no premakniti\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, 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:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "name¹èanje binarnih paketov\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veè paketov\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èanje %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2724,176 +2724,176 @@ msgstr "%s ni mo
 msgid "cannot open Packages database in %s\n"
 msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, fuzzy, c-format
 msgid "  Actual size: %12d\n"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Stari podpis PGP\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, 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:225
+#: lib/signature.c:226
 #, fuzzy, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Ni mo¾no izvesti %s: %s"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "pgp je bil neuspe¹en"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "pgp je bil neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Dol¾. podpisa PGP: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "branje podpisa je bilo neuspe¹no"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Prebrano %d bajtov podpisa PGP\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "gpg je bil neuspe¹en"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "gpg je boil neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Dol¾. podpisa GnuPG: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, fuzzy, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Neveljaven %%_signature v makro-datoteki.\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, fuzzy, c-format
 msgid "You must set \"%%_gpg_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:749
+#: lib/signature.c:750
 #, fuzzy, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Glava je predolga"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "preskoèi vse podpise MD5"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ec4dbad..7bd9145 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,58 +1,58 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
-#: build.c:36
+#: build.c:39
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: build.c:65
+#: build.c:71
 #, fuzzy, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "neuspelo otvaranje %s\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build.c:192
+#: build.c:198
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build.c:232
+#: build.c:238
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build.c:237
+#: build.c:243
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s ne lièi na RPM paket\n"
 
-#: build.c:246
+#: build.c:252
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s ne lièi na RPM paket\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:316
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "gre¹ka potrage za paketom %s\n"
@@ -201,141 +201,141 @@ msgstr "Mo
 msgid "Usage: %s {--help}\n"
 msgstr "kori¹æenje: {rpm --help}"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Koristite -e ili --erase.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "samo jedan glavni re¾im mo¾e biti naveden"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo jedan tip upita/provere mo¾e biti uraðen odjednom"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "samo instalacija i a¾uriranje mogu biti forsirane"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate mo¾ete koristiti samo kad instalirate novi paket"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti za --prefix moraju poèeti znakom /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -343,14 +343,14 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¾ete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -358,89 +358,89 @@ msgstr ""
 "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili "
 "rekreiranja baze podataka"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti za --root (-r) moraju poèeti znakom /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Neuspela provera lozinke\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Lozinka je dobra.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "nedosataje paket za rekreiranje"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "nedostaje specifikacije za kreiranje"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "nedostaju 'tar' datoteke za kreiranje"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nedostaje paket za potpisivanje"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "nedostaju argumenti za upit"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "nedostaju argumenti za proveru"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekivani argumenti za --querytags"
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "nedostaju argumenti za upit"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 #, 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:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "nedostaje { posle %"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "nedostaje ':' na %s:%d"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "nedostaje { posle %"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:583
+#: build/files.c:586
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:593
+#: build/files.c:596
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:605
+#: build/files.c:608
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:930
+#: build/files.c:933
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:958
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:973
+#: build/files.c:976
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:986
+#: build/files.c:989
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1137
+#: build/files.c:1140
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, 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:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Ne mogu da proèitam 'sigtarget'"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, fuzzy, c-format
 msgid "%s failed\n"
 msgstr "PGP omanuo"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, fuzzy, c-format
 msgid "failed to write all data to %s\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, fuzzy, c-format
 msgid "Failed to find %s:\n"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, 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:79
+#: build/pack.c:81
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, fuzzy, c-format
 msgid "create archive failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, fuzzy, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, 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:286
+#: build/pack.c:288
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, fuzzy, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, 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:342
+#: build/pack.c:344
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr ""
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, fuzzy, c-format
 msgid "Generating signature: %d\n"
 msgstr "napravi PGP potpis"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, fuzzy, c-format
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, fuzzy, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, fuzzy, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, fuzzy, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, fuzzy, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, fuzzy, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: build/pack.c:783
+#: build/pack.c:785
 #, fuzzy, c-format
 msgid "cannot create %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -1393,17 +1393,17 @@ msgstr ""
 msgid "lookup i18N strings in specfile catalog"
 msgstr ""
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
@@ -1453,89 +1453,89 @@ msgstr ""
 msgid " failed - "
 msgstr "PGP omanuo"
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "upit nad svim paketima"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
 "depth)\n"
 msgstr ""
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1584,46 +1584,46 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:313
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -2133,305 +2133,305 @@ msgid "generate signature"
 msgstr "napravi PGP potpis"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:285
+#: lib/problems.c:286
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " se sudara sa %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " je potreban paketu %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(nema datoteka)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:287
+#: lib/query.c:288
 #, fuzzy
 msgid "not installed "
 msgstr "paket %s nije instaliran\n"
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(nepoznat tip)"
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 #, fuzzy
 msgid "package has neither file owner or id lists\n"
 msgstr "paket nema imena"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 #, fuzzy
 msgid "no packages\n"
 msgstr "upit nad svim paketima"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "nijedan paket ne zahteva %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "nijedan paket ne obezbeðuje %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, fuzzy, c-format
 msgid "record %u could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
@@ -2525,91 +2525,91 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr ""
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 #, fuzzy
 msgid "Preparing packages for installation..."
 msgstr "nedostaje paket za instalaciju"
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "neodstaje paket za deinstalaciju"
@@ -2719,177 +2719,177 @@ msgstr "Ne mogu da otvorim %s za 
 msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, c-format
 msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
 msgstr ""
 
-#: lib/signature.c:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr ""
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "napravi PGP potpis"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 #, fuzzy
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Stari (interni) potpis!  Odakle vam!?"
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr ""
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 #, fuzzy
 msgid "pgp failed\n"
 msgstr "PGP omanuo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 #, fuzzy
 msgid "pgp failed to write signature\n"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 #, fuzzy
 msgid "unable to read the signature\n"
 msgstr "ne mogu da proèitam potpis"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 #, fuzzy
 msgid "gpg failed\n"
 msgstr "PGP omanuo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 #, fuzzy
 msgid "gpg failed to write signature\n"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr ""
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 msgid "Header+Payload size: "
 msgstr ""
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "preskoèi sve MD5 potpise"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index a660b35..2b0cdf0 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -9,53 +9,53 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "ouppfyllda byggberoenden:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Kan inte öppna specfilen %s: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Kunde inte öppna \"tar\"-rör: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Kunde inte läsa specfil från %s\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Kunde inte byta namn på %s till %s: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "kunde inte ta status på %s: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Filen %s är inte en vanlig fil.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Filen %s tycks inte vara en specfil.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Bygger målplattformar: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Bygger för målet %s\n"
@@ -202,123 +202,123 @@ msgstr "Det h
 msgid "Usage: %s {--help}\n"
 msgstr "Användning: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "Flaggan --rcfile har tagits bort.\n"
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Använd \"--macros <fil:...>\" istället.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Internt fel i argumenthantering (%d) :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "enbart ett huvudläge kan anges"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "endast en typ av fråga/verifiering kan utföras åt gången"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "oväntade frågeflaggor"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "oväntat frågeformat"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "oväntad frågekälla"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath angivet för en operation som inte använder någon databas"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "enbart installation, uppgradering, rmsource och rmspec kan tvingas fram"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr "filer kan relokeras endast under paketinstallation"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "enbart en av --prefix eller --relocate kan användas"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate och --excludepath kan endast användas när nya paket installeras"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan endast användas när nya paket installeras"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "argument till --prefix måste börja med /"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "enbart en av --excludedocs och --includedocs kan användas"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan enbart användas när paket raderas"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb kan enbart användas när paket installeras eller raderas"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -326,7 +326,7 @@ msgstr ""
 "skriptdeaktiveringsflaggor kan enbart användas när paket installeras eller "
 "raderas"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -334,7 +334,7 @@ msgstr ""
 "utlösardeaktiveringsflaggor kan enbart användas när paket installeras eller "
 "raderas"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -342,13 +342,13 @@ msgstr ""
 "--nodeps kan enbart användas när paket byggs, byggs om, kompileras om, "
 "installeras, raderas eller verifieras"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test kan enbart användas när paket installeras, raderas eller byggs"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -356,87 +356,87 @@ msgstr ""
 "--root (-r) kan enbart användas när paket installeras, raderas, frågas eller "
 "databasen byggs om"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "inga filer att signera\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan inte komma åt filen %s\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp hittades inte: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Ange lösenfras: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Kontrollen av lösenfrasen misslyckades\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Lösenfrasen är ok.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Felaktig %%_signature-spec i makrofil.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign kan enbart användas vid pakettillverkning"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "exec misslyckades\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "inga paketfiler angivna för omtillverkning"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "inga specfiler angivna för tillverkning"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "inga tar-filer angivna för tillverkning"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "inga paket angivna för signering"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "inga paket angivna för installation"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "inga parametrar angivna för fråga"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "inga parametrar angivna för verifiering"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "oväntade argument till --querytags "
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "inga parametrar angivna för fråga"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "Kan inte öppna temporär fil.\n"
 
@@ -514,180 +514,180 @@ msgstr "&& och || st
 msgid "syntax error in expression\n"
 msgstr "syntaxfel i uttryck\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK-fel: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Saknad \"(\" i %s %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Saknad \")\" i %s(%s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ogiltig %s token: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Saknad %s i %s %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Annat än blanktecken följer på %s(): %s\n"
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Felaktig syntax: %s(%s)\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Felaktig rättighetsspecifikation: %s(%s)\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Ovanlig lokallängd: \"%.*s\" i %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Duplicerad lokal %.*s i %%lang(%s)\n"
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Slog i gränsen för %%docdir\n"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Två filer på en rad: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Filnamn måste börja med \"/\": %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Filen uppräknad två gånger: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Filen matchar inte prefixet (%s): %s\n"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Filen hittades inte: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Felaktig ägare/grupp: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Fil %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Filen behöver inledande \"/\": %s\n"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Matchning inte tillåtet: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Hittade ingen fil vid matchningen: %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunde inte öppna %%files-fil %s: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "rad: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "Kunde inte grena %s: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s misslyckades\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "kunde inte skriva all data till %s\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Letar upp %s: (använder %s)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "Misslyckades med att hitta %s:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -721,152 +721,152 @@ msgstr "getGidS: f
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Kunde inte kanonisera värdnamn: %s\n"
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "skapande av arkiv misslyckades vid fil %s: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "skapande av arkiv misslyckades: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy kunde inte skriva: %s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy kunde inte läsa: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "Kunde inte öppna PreIn-fil: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "Kunde inte öppna PreUn-fil: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "Kunde inte öppna PostIn-fil: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "Kunde inte öppna PostUn-fil: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "Kunde inte öppna VerifyScript-fil: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Kunde inte öppna Trigger-skriptfil: %s\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: öppna %s: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: läs %s: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek misslyckades: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s är inte ett RPM-paket\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: läser huvud från %s\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 msgid "Unable to create immutable header region.\n"
 msgstr "Kan inte skapa oföränderlig huvudregion.\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 msgid "Unable to write temp header\n"
 msgstr "Kan inte skriva temporärhuvud\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "Felaktig CSA-data\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 msgid "Unable to write final header\n"
 msgstr "Kan inte skriva slutligt huvud\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Genererar signatur: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 msgid "Unable to reload signature header.\n"
 msgstr "Kan inte läsa om signaturhuvud.\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "Kan inte läsa signaturen %s: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, 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:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "Kan inte skriva huvud till %s: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, 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:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kan inte skriva last till %s: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "kan inte skapa %s: %s\n"
@@ -1371,17 +1371,17 @@ msgstr "
 msgid "lookup i18N strings in specfile catalog"
 msgstr "slå upp översatta strängar i specfilkatalog"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "rad %d: Felaktigt tal: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "rad %d: Felaktigt no%s-tal: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "rad %d: Felaktigt %s-tal: %s\n"
@@ -1427,70 +1427,70 @@ msgstr "Ingen arkivfilen i huvud"
 msgid " failed - "
 msgstr " misslyckades - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "paket %s är redan installerat"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "felaktig db-fil %s\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "inga paket\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr "NEJ "
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr "========== noterar alla relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1498,20 +1498,20 @@ msgid ""
 msgstr ""
 "========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr "========== endast efterföljare (presentationsordning)\n"
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr "LOOP:\n"
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsätter med tsort ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1560,47 +1560,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:308
+#: lib/fsm.c:313
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s skapad med rättigheter %04o.\n"
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, 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:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -2076,302 +2076,302 @@ msgid "generate signature"
 msgstr "generera signatur"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "paket %s är för en annan arkitektur"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "paket %s är för ett annat operativsystem"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "paket %s är redan installerat"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sökväg %s i paket %s är inte relokerbar"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, 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/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, 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/problems.c:280
+#: lib/problems.c:281
 #, 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/problems.c:285
+#: lib/problems.c:286
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s systemanrop före transaktion: %s misslyckades: %s"
 
-#: lib/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "okänt fel %d uppträdde under behandling av paket %s"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " står i konflikt med %s-%s-%s\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " behövs av %s-%s-%s\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan inte skapa %%%s %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan inte skriva till %%%s %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kör (eventuellt) %s-skript\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, 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:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "fel format: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(innehåller inga filer)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "ersatt        "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "oinstallerat  "
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "nätdelad      "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(okänd %3d)   "
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(ej tillstnd) "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "paketet har varken filägare eller id-listor\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kan inte fråga %s: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "misslyckades med att öppna %s: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "fråga av %s misslyckades\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 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:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: läsning av paketlista misslyckades: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "fråga av specfil %s misslyckades, kan inte tolka\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "inga paket\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupp %s innehåller inga paket\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "inga paketutlösare %s\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "Misslyckades med att läsa %s: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "inga paketutlösare %s\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "inget paket behöver %s\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "inget paket tillhandahåller %s\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s tillhör inget paket\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "felaktigt paketnummer: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr "paketpost nummer: %u\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "post %u kunde inte läsas\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "felaktig db-fil %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
@@ -2465,89 +2465,89 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "Förbereder..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "Förbereder paket för installation ..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, 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:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 msgid "removing these packages would break dependencies:\n"
 msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
 
-#: lib/rpminstall.c:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2657,172 +2657,172 @@ msgstr "Kan inte 
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, 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:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Faktisk storlek: %12d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Gammal PGP-signatur\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 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:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "Kunde inte köra %s: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "pgp misslyckades\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "pgp misslyckades att skriva en signatur\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP signaturstorlek: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "kan inte läsa signaturen\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fick %d byte PGP-signatur\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "gpg misslyckades\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "gpg kunde inte skriva signatur\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG-signaturstorlek: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Felaktig %%_signature-spec i makrofil\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, 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:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Huvudstorleken för stor"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "hoppa över eventuella MD5-signaturer"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "hämtar lista över monterade filsystem\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "saknas     %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Ouppfyllda beroenden för %s-%s-%s: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n"
index c256bbf..9e47a00 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-04-10 15:55-0400\n"
+"POT-Creation-Date: 2002-04-11 12:12-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"
@@ -10,53 +10,53 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 0.9.2alpha\n"
 
-#: build.c:36
+#: build.c:39
 msgid "failed build dependencies:\n"
 msgstr "iþlem durdu, önce baðýmlý paketler kurulmalý:\n"
 
-#: build.c:65
+#: build.c:71
 #, c-format
 msgid "Unable to open spec file %s: %s\n"
 msgstr "%s spec dosyasý açýlamadý: %s\n"
 
-#: build.c:145 build.c:157
+#: build.c:151 build.c:163
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "tar veriyolu açýlamadý: %m\n"
 
 #. Give up
-#: build.c:164
+#: build.c:170
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s paketinden spec dosyasý okunamadý\n"
 
-#: build.c:192
+#: build.c:198
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "%s %s olarak deðiþtirilemedi: %m\n"
 
-#: build.c:232
+#: build.c:238
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "%s durum bilgileri alýnamadý: %m\n"
 
-#: build.c:237
+#: build.c:243
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s bir normal bir dosya deðil.\n"
 
-#: build.c:246
+#: build.c:252
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s bir spec dosyasý gibi görünmüyor.\n"
 
 #. parse up the build operators
-#: build.c:301
+#: build.c:307
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Hedef platformlar derleniyor: %s\n"
 
-#: build.c:316
+#: build.c:322
 #, c-format
 msgid "Building for target %s\n"
 msgstr "%s için derleniyor\n"
@@ -204,126 +204,126 @@ msgstr "Bu program GNU GPL ko
 msgid "Usage: %s {--help}\n"
 msgstr "Kullanýmý: %s {--help}\n"
 
-#: rpmqv.c:597
+#: rpmqv.c:601
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "--rcfile seçeneði kaldýrýlmýþtý.\n"
 
-#: rpmqv.c:598
+#: rpmqv.c:602
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Yerine \"--macros <dosya:...>\" kullanýn.\n"
 
-#: rpmqv.c:604
+#: rpmqv.c:608
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "(%d) argümaný iþlenirken iç hata oluþtu :-(\n"
 
-#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695
+#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699
 msgid "only one major mode may be specified"
 msgstr "sadece bir ana kip belirtilebilir"
 
-#: rpmqv.c:674
+#: rpmqv.c:678
 msgid "one type of query/verify may be performed at a time"
 msgstr "bir anda sadece bir tarz sorgulama/denetleme yapýlabilir"
 
-#: rpmqv.c:678
+#: rpmqv.c:682
 msgid "unexpected query flags"
 msgstr "beklenmeyen sorgulama bayraklarý"
 
-#: rpmqv.c:681
+#: rpmqv.c:685
 msgid "unexpected query format"
 msgstr "beklenmeyen sorgulama biçemi"
 
-#: rpmqv.c:684
+#: rpmqv.c:688
 msgid "unexpected query source"
 msgstr "beklenmeyen sorgulama kaynaðý"
 
-#: rpmqv.c:725
+#: rpmqv.c:729
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath bir veritabaný kullanmayan iþlemler için verilmiþ"
 
-#: rpmqv.c:731
+#: rpmqv.c:735
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "sadece  kaynak ve spec silme iþlemleri, kurma, güncelleme iþlemleri için "
 "zorlanabilir"
 
-#: rpmqv.c:733
+#: rpmqv.c:737
 msgid "files may only be relocated during package installation"
 msgstr ""
 "dosyalar sadece paket kurulumu sýrasýnda yeni yerlerine yerleþtirilebilir"
 
-#: rpmqv.c:736
+#: rpmqv.c:740
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir"
 
-#: rpmqv.c:739
+#: rpmqv.c:743
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate ve --excludepath sadece yeni paket kurulumunda kullanýlabilir"
 
-#: rpmqv.c:742
+#: rpmqv.c:746
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix sadece yeni paketlerin kurulmasý sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:745
+#: rpmqv.c:749
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ile belirtilenler '/' ile baþlamalý"
 
-#: rpmqv.c:748
+#: rpmqv.c:752
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:752
+#: rpmqv.c:756
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:757
+#: rpmqv.c:761
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:761
+#: rpmqv.c:765
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:765
+#: rpmqv.c:769
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:769
+#: rpmqv.c:773
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:773
+#: rpmqv.c:777
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ve --includedocs bir arada kullanýlamaz"
 
-#: rpmqv.c:777
+#: rpmqv.c:781
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:781
+#: rpmqv.c:785
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:786
+#: rpmqv.c:790
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:790
+#: rpmqv.c:794
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:794
+#: rpmqv.c:798
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:799
+#: rpmqv.c:803
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb sadece paket kurulumu ve kaldýrýlmasý sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:804
+#: rpmqv.c:808
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -331,7 +331,7 @@ msgstr ""
 "betik iptal etme seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda "
 "kullanýlabilir"
 
-#: rpmqv.c:809
+#: rpmqv.c:813
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -339,7 +339,7 @@ msgstr ""
 "tetikleme iptal seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda "
 "kullanýlabilir"
 
-#: rpmqv.c:813
+#: rpmqv.c:817
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -347,7 +347,7 @@ msgstr ""
 "--nodeps sadece paket oluþturma, yeniden oluþturma, yeniden derleme, "
 "kurulum, kaldýrma ve denetleme iþlemlerinde kullanýlabilir"
 
-#: rpmqv.c:818
+#: rpmqv.c:822
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -355,7 +355,7 @@ msgstr ""
 "--test sadece paket kurulumu, kaldýrýlmasý ve oluþturulmasý iþlemlerinde "
 "kullanýlabilir"
 
-#: rpmqv.c:823
+#: rpmqv.c:827
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -363,87 +363,87 @@ msgstr ""
 "--root (-r) sadece kurulum, kaldýrma, sorgulama ve yeniden veritabaný "
 "oluþturma iþlemlerinde kullanýlabilir"
 
-#: rpmqv.c:835
+#: rpmqv.c:839
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ile verilenler '/' ile baþlamalý"
 
-#: rpmqv.c:859
+#: rpmqv.c:863
 msgid "no files to sign\n"
 msgstr "imzalanacak dosya yok\n"
 
-#: rpmqv.c:864
+#: rpmqv.c:868
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "%s dosyasý bulunamýyor\n"
 
-#: rpmqv.c:883
+#: rpmqv.c:887
 msgid "pgp not found: "
 msgstr "pgp bulunamadý: "
 
-#: rpmqv.c:888
+#: rpmqv.c:892
 msgid "Enter pass phrase: "
 msgstr "Anahtar parolasýný girin: "
 
-#: rpmqv.c:890
+#: rpmqv.c:894
 msgid "Pass phrase check failed\n"
 msgstr "Anahtar parolasý kontrolü baþarýsýz\n"
 
-#: rpmqv.c:894
+#: rpmqv.c:898
 msgid "Pass phrase is good.\n"
 msgstr "Anahtar parolasý doðru.\n"
 
-#: rpmqv.c:899
+#: rpmqv.c:903
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Makro dosyasýndaki %%_signature spec geçersiz.\n"
 
-#: rpmqv.c:906
+#: rpmqv.c:910
 msgid "--sign may only be used during package building"
 msgstr "--sign sadece paket oluþturulurken kullanýlabilir"
 
-#: rpmqv.c:923
+#: rpmqv.c:927
 msgid "exec failed\n"
 msgstr "icra baþarýsýz\n"
 
-#: rpmqv.c:955
+#: rpmqv.c:959
 msgid "no packages files given for rebuild"
 msgstr "yeniden oluþturmak için paket dosyalarý belirtilmemiþ"
 
-#: rpmqv.c:1023
+#: rpmqv.c:1027
 msgid "no spec files given for build"
 msgstr "oluþturma için gerekli spec dosyasý belirtilmemiþ"
 
-#: rpmqv.c:1025
+#: rpmqv.c:1029
 msgid "no tar files given for build"
 msgstr "oluþturma için gereken tar dosyalarý belirtilmemiþ"
 
-#: rpmqv.c:1047
+#: rpmqv.c:1051
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "imzalanacak paket(ler) belirtilmedi"
 
-#: rpmqv.c:1088
+#: rpmqv.c:1092
 msgid "no packages given for install"
 msgstr "yüklenecek paket(ler) belirtilmedi"
 
-#: rpmqv.c:1104
+#: rpmqv.c:1108
 msgid "no arguments given for query"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: rpmqv.c:1117
+#: rpmqv.c:1121
 msgid "no arguments given for verify"
 msgstr "denetleme için hiç argüman belirtilmedi"
 
-#: rpmqv.c:1125
+#: rpmqv.c:1129
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ile beklenmeyen girdiler"
 
-#: rpmqv.c:1141
+#: rpmqv.c:1145
 #, fuzzy
 msgid "no arguments given"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: build/build.c:125 build/pack.c:483
+#: build/build.c:125 build/pack.c:485
 msgid "Unable to open temp file.\n"
 msgstr "Geçici dosya açýlamadý.\n"
 
@@ -521,180 +521,180 @@ msgstr "&& ve || dizgelerde desteklenmez\n"
 msgid "syntax error in expression\n"
 msgstr "ifadede sözdizimi hatasý\n"
 
-#: build/files.c:271
+#: build/files.c:274
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK baþarýsýz: %s\n"
 
-#: build/files.c:333 build/files.c:529 build/files.c:718
+#: build/files.c:336 build/files.c:532 build/files.c:721
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: build/files.c:344 build/files.c:657 build/files.c:729
+#: build/files.c:347 build/files.c:660 build/files.c:732
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "%s içinde ')' yok: (%s\n"
 
-#: build/files.c:382 build/files.c:682
+#: build/files.c:385 build/files.c:685
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Andaç %s geçersiz: %s\n"
 
-#: build/files.c:490
+#: build/files.c:493
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: build/files.c:545
+#: build/files.c:548
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() boþluksuz yazýlmýþ: %s\n"
 
-#: build/files.c:583
+#: build/files.c:586
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Sözdizimi hatasý: %s(%s)\n"
 
-#: build/files.c:593
+#: build/files.c:596
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "mode spec hatalý: %s(%s)\n"
 
-#: build/files.c:605
+#: build/files.c:608
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "dirmode spec hatalý: %s(%s)\n"
 
-#: build/files.c:756
+#: build/files.c:759
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "yerel uzunluðu hatalý: \"%.*s\" (%%lang(%s))\n"
 
 #. @innercontinue@
-#: build/files.c:767
+#: build/files.c:770
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "%.*s yereli %%lang(%s) içinde tekrarlanmýþ\n"
 
-#: build/files.c:924
+#: build/files.c:927
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdir için hit sýnýrý\n"
 
-#: build/files.c:930
+#: build/files.c:933
 #, 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:958
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Bir satýrda 2 dosya: %s\n"
 
-#: build/files.c:973
+#: build/files.c:976
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Dosya \"/\" ile baþlamalý: %s\n"
 
-#: build/files.c:986
+#: build/files.c:989
 #, 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:1137
+#: build/files.c:1140
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Dosya iki kere gösterildi: %s\n"
 
-#: build/files.c:1281
+#: build/files.c:1284
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
 
-#: build/files.c:1523
+#: build/files.c:1526
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
 
-#: build/files.c:1547
+#: build/files.c:1550
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Dosya bulunamadý: %s\n"
 
-#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50
+#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Kullanýcý/grup hatalý: %s\n"
 
-#: build/files.c:1603
+#: build/files.c:1606
 #, fuzzy, c-format
 msgid "File%5d: %07o %s.%s\t %s\n"
 msgstr "Dosya %4d: %07o %s.%s\t %s\n"
 
-#: build/files.c:1712
+#: build/files.c:1715
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Dosya \"/\" ile içermeli: %s\n"
 
-#: build/files.c:1735
+#: build/files.c:1738
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
 
-#: build/files.c:1750
+#: build/files.c:1753
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
 
-#: build/files.c:1812
+#: build/files.c:1815
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
 
-#: build/files.c:1823 build/pack.c:146
+#: build/files.c:1826 build/pack.c:148
 #, c-format
 msgid "line: %s\n"
 msgstr "satýr: %s\n"
 
-#: build/files.c:2198
+#: build/files.c:2201
 #, 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:2272
+#: build/files.c:2275
 #, c-format
 msgid "Couldn't exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: build/files.c:2277
+#: build/files.c:2280
 #, c-format
 msgid "Couldn't fork %s: %s\n"
 msgstr "%s ayrýlamadý: %s\n"
 
-#: build/files.c:2361
+#: build/files.c:2364
 #, c-format
 msgid "%s failed\n"
 msgstr "%s baþarýsýz\n"
 
-#: build/files.c:2365
+#: build/files.c:2368
 #, c-format
 msgid "failed to write all data to %s\n"
 msgstr "tüm veri %s içine yazýlamadý\n"
 
-#: build/files.c:2521
+#: build/files.c:2524
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "%s aranýyor: (%s kullanarak)...\n"
 
-#: build/files.c:2550 build/files.c:2564
+#: build/files.c:2553 build/files.c:2567
 #, c-format
 msgid "Failed to find %s:\n"
 msgstr "%s bulunamadý:\n"
 
-#: build/files.c:2686
+#: build/files.c:2689
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@@ -728,156 +728,156 @@ msgstr "getGidS: 
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Böyle bir makina yok: %s\n"
 
-#: build/pack.c:79
+#: build/pack.c:81
 #, c-format
 msgid "create archive failed on file %s: %s\n"
 msgstr "%s dosyasýnda arþiv oluþturulamadý: %s\n"
 
-#: build/pack.c:82
+#: build/pack.c:84
 #, c-format
 msgid "create archive failed: %s\n"
 msgstr "arþiv oluþturulamadý: %s\n"
 
-#: build/pack.c:104
+#: build/pack.c:106
 #, c-format
 msgid "cpio_copy write failed: %s\n"
 msgstr "cpio_copy yazma hatasý:%s\n"
 
-#: build/pack.c:111
+#: build/pack.c:113
 #, c-format
 msgid "cpio_copy read failed: %s\n"
 msgstr "cpio_copy okuma hatasý: %s\n"
 
-#: build/pack.c:214
+#: build/pack.c:216
 #, c-format
 msgid "Could not open PreIn file: %s\n"
 msgstr "PreIn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:221
+#: build/pack.c:223
 #, c-format
 msgid "Could not open PreUn file: %s\n"
 msgstr "PreUn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:228
+#: build/pack.c:230
 #, c-format
 msgid "Could not open PostIn file: %s\n"
 msgstr "PostIn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:235
+#: build/pack.c:237
 #, c-format
 msgid "Could not open PostUn file: %s\n"
 msgstr "PostUn dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:243
+#: build/pack.c:245
 #, c-format
 msgid "Could not open VerifyScript file: %s\n"
 msgstr "VerifyScript dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:258
+#: build/pack.c:260
 #, c-format
 msgid "Could not open Trigger script file: %s\n"
 msgstr "Trigger betik dosyasý açýlamadý: %s\n"
 
-#: build/pack.c:286
+#: build/pack.c:288
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: %s açýlýrken: %s\n"
 
-#: build/pack.c:296
+#: build/pack.c:298
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: %s okunurken: %s\n"
 
-#: build/pack.c:305 build/pack.c:529
+#: build/pack.c:307 build/pack.c:531
 #, c-format
 msgid "%s: Fseek failed: %s\n"
 msgstr "%s: Fseek baþarýsýz: %s\n"
 
-#: build/pack.c:333
+#: build/pack.c:335
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s bir RPM paketi deðil\n"
 
-#: build/pack.c:342
+#: build/pack.c:344
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: %s baþlýðý okunuyor\n"
 
-#: build/pack.c:471
+#: build/pack.c:473
 #, fuzzy
 msgid "Unable to create immutable header region.\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: build/pack.c:490
+#: build/pack.c:492
 #, fuzzy
 msgid "Unable to write temp header\n"
 msgstr "%s'e baþlýk yazýlamadý: %s\n"
 
-#: build/pack.c:500
+#: build/pack.c:502
 msgid "Bad CSA data\n"
 msgstr "CSA verisi geçersiz\n"
 
-#: build/pack.c:536
+#: build/pack.c:538
 #, fuzzy
 msgid "Unable to write final header\n"
 msgstr "%s'e baþlýk yazýlamadý: %s\n"
 
-#: build/pack.c:556
+#: build/pack.c:558
 #, c-format
 msgid "Generating signature: %d\n"
 msgstr "Ýmza üretiliyor: %d\n"
 
-#: build/pack.c:574
+#: build/pack.c:576
 #, fuzzy
 msgid "Unable to reload signature header.\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: build/pack.c:582
+#: build/pack.c:584
 #, c-format
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:618 lib/psm.c:1437
+#: build/pack.c:620 lib/psm.c:1444
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
 
-#: build/pack.c:633
+#: build/pack.c:635
 #, c-format
 msgid "Unable to open sigtarget %s: %s\n"
 msgstr "sigtarget %s açýlamadý: %s\n"
 
-#: build/pack.c:644
+#: build/pack.c:646
 #, c-format
 msgid "Unable to read header from %s: %s\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: build/pack.c:658
+#: build/pack.c:660
 #, c-format
 msgid "Unable to write header to %s: %s\n"
 msgstr "%s'e baþlýk yazýlamadý: %s\n"
 
-#: build/pack.c:668
+#: build/pack.c:670
 #, c-format
 msgid "Unable to read payload from %s: %s\n"
 msgstr "%s'den payload okunamadý: %s\n"
 
-#: build/pack.c:674
+#: build/pack.c:676
 #, c-format
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:699 lib/psm.c:1725
+#: build/pack.c:701 lib/psm.c:1732
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
 
-#: build/pack.c:766
+#: build/pack.c:768
 #, 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:783
+#: build/pack.c:785
 #, c-format
 msgid "cannot create %s: %s\n"
 msgstr "%s dosyasý oluþturulamýyor: %s\n"
@@ -1391,17 +1391,17 @@ msgstr "hedef platforma zorlar"
 msgid "lookup i18N strings in specfile catalog"
 msgstr "spec dosyasýndaki i18n iletilerine bakar"
 
-#: build/spec.c:233
+#: build/spec.c:235
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "satýr %d: Numara hatalý: %s\n"
 
-#: build/spec.c:239
+#: build/spec.c:241
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "satýr %d: Hatalý no%s numarasý: %d\n"
 
-#: build/spec.c:300
+#: build/spec.c:302
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "satýr %d: Hatalý %s numarasý: %s\n"
@@ -1447,70 +1447,70 @@ msgstr ""
 msgid " failed - "
 msgstr " baþarýsýz - "
 
-#: lib/depends.c:149
+#: lib/depends.c:152
 #, fuzzy, c-format
 msgid "package %s was already added, replacing with %s\n"
 msgstr "%s zaten kurulu"
 
-#: lib/depends.c:363
+#: lib/depends.c:366
 msgid "(cached)"
 msgstr ""
 
-#: lib/depends.c:388
+#: lib/depends.c:391
 #, fuzzy
 msgid "(rpmrc provides)"
 msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
 
-#: lib/depends.c:404
+#: lib/depends.c:407
 #, fuzzy
 msgid "(rpmlib provides)"
 msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
 
-#: lib/depends.c:425
+#: lib/depends.c:428
 #, fuzzy
 msgid "(db files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/depends.c:437
+#: lib/depends.c:440
 #, fuzzy
 msgid "(db provides)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
 
-#: lib/depends.c:450
+#: lib/depends.c:453
 #, fuzzy
 msgid "(db package)"
 msgstr "paket yok\n"
 
-#: lib/depends.c:489
+#: lib/depends.c:492
 #, fuzzy, c-format
 msgid "%9s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n"
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "NO "
 msgstr "HAYIR "
 
-#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569
+#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569
 msgid "YES"
 msgstr "EVET"
 
-#: lib/depends.c:759
+#: lib/depends.c:762
 #, c-format
 msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
 msgstr ""
 
-#: lib/depends.c:879
+#: lib/depends.c:882
 #, 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:1147
+#: lib/depends.c:1150
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort baðýntýlarý kaydediliyor\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1253
+#: lib/depends.c:1256
 #, fuzzy
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1518,20 +1518,20 @@ msgid ""
 msgstr ""
 "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
 
-#: lib/depends.c:1346
+#: lib/depends.c:1349
 msgid "========== successors only (presentation order)\n"
 msgstr "========== sadece ardýllar (sunum sýrasý)\n"
 
-#: lib/depends.c:1416
+#: lib/depends.c:1419
 msgid "LOOP:\n"
 msgstr "ÇEVRÝM:\n"
 
-#: lib/depends.c:1451
+#: lib/depends.c:1454
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort sürüyor ...\n"
 
 #. Return no. of packages that could not be ordered.
-#: lib/depends.c:1456
+#: lib/depends.c:1459
 #, c-format
 msgid "rpmdepOrder failed, %d elements remain\n"
 msgstr ""
@@ -1580,47 +1580,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:308
+#: lib/fsm.c:313
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Pakette bulunmayan dizinler:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:315
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1196
+#: lib/fsm.c:1201
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
 
-#: lib/fsm.c:1487
+#: lib/fsm.c:1492
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1610 lib/fsm.c:1742
+#: lib/fsm.c:1615 lib/fsm.c:1747
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1768
+#: lib/fsm.c:1773
 #, 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:1774
+#: lib/fsm.c:1779
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1784
+#: lib/fsm.c:1789
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1804
+#: lib/fsm.c:1809
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -2100,301 +2100,301 @@ msgid "generate signature"
 msgstr "imza üretir"
 
 #. @observer@
-#: lib/problems.c:227
+#: lib/problems.c:228
 msgid "different"
 msgstr ""
 
-#: lib/problems.c:235
+#: lib/problems.c:236
 #, fuzzy, c-format
 msgid "package %s is intended for a %s architecture"
 msgstr "%s farklý bir mimari için"
 
-#: lib/problems.c:240
+#: lib/problems.c:241
 #, fuzzy, c-format
 msgid "package %s is intended for a %s operating system"
 msgstr "%s farklý bir iþletim sistemi için"
 
-#: lib/problems.c:245
+#: lib/problems.c:246
 #, c-format
 msgid "package %s is already installed"
 msgstr "%s zaten kurulu"
 
-#: lib/problems.c:250
+#: lib/problems.c:251
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "%s dosya yolu %s paketinde yeniden konumlandýrýlamaz"
 
-#: lib/problems.c:255
+#: lib/problems.c:256
 #, 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/problems.c:260
+#: lib/problems.c:261
 #, 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/problems.c:265
+#: lib/problems.c:266
 #, 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/problems.c:270
+#: lib/problems.c:271
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "%s kurulumu %ld%cb gerektiriyor (%s dosya sisteminde)"
 
-#: lib/problems.c:280
+#: lib/problems.c:281
 #, 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/problems.c:285
+#: lib/problems.c:286
 #, 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/problems.c:289
+#: lib/problems.c:290
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Requires: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/problems.c:293
+#: lib/problems.c:294
 #, fuzzy, c-format
 msgid "package %s has unsatisfied Conflicts: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/problems.c:298
+#: lib/problems.c:299
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "conflicts with"
 msgstr " %s-%s-%s ile çeliþiyor\n"
 
-#: lib/problems.c:378
+#: lib/problems.c:379
 #, fuzzy
 msgid "is needed by"
 msgstr " %s-%s-%s için gerekli\n"
 
 #. @-modfilesys@
-#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161
+#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d veri türü desteklenmiyor\n"
 
-#: lib/psm.c:444
+#: lib/psm.c:442
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
 
-#: lib/psm.c:450
+#: lib/psm.c:448
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s dosyasýna yazýlamaz %s\n"
 
-#: lib/psm.c:483
+#: lib/psm.c:481
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:599
+#: lib/psm.c:597
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:709
+#: lib/psm.c:716
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
 
-#: lib/psm.c:875
+#: lib/psm.c:882
 #, 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:882
+#: lib/psm.c:889
 #, 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:1224
+#: lib/psm.c:1231
 #, 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:1344
+#: lib/psm.c:1351
 #, 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:1486
+#: lib/psm.c:1493
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1495
+#: lib/psm.c:1502
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1537
+#: lib/psm.c:1544
 #, 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:1538
+#: lib/psm.c:1545
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1740
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1743
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
 
-#: lib/query.c:124
+#: lib/query.c:125
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "biçem yanlýþ: %s\n"
 
-#: lib/query.c:220
+#: lib/query.c:221
 msgid "(contains no files)"
 msgstr "(hiç dosya içermiyor)"
 
-#: lib/query.c:281
+#: lib/query.c:282
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:284
+#: lib/query.c:285
 msgid "replaced      "
 msgstr "yerine        "
 
-#: lib/query.c:287
+#: lib/query.c:288
 msgid "not installed "
 msgstr "yüklenmedi "
 
-#: lib/query.c:290
+#: lib/query.c:291
 msgid "net shared    "
 msgstr "að paylaþýmlý "
 
-#: lib/query.c:293
+#: lib/query.c:294
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(bilinmeyen %3d)"
 
-#: lib/query.c:298
+#: lib/query.c:299
 msgid "(no state)    "
 msgstr "(durumsuz)    "
 
-#: lib/query.c:317 lib/query.c:373
+#: lib/query.c:318 lib/query.c:374
 msgid "package has neither file owner or id lists\n"
 msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
 
-#: lib/query.c:462
+#: lib/query.c:463
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s sorgulanamýyor: %s\n"
 
-#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490
-#: lib/rpminstall.c:867
+#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493
+#: lib/rpminstall.c:870
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/query.c:632
+#: lib/query.c:633
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
 
-#: lib/query.c:638
+#: lib/query.c:639
 msgid "old format source packages cannot be queried\n"
 msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
 
-#: lib/query.c:664 lib/rpminstall.c:503
+#: lib/query.c:665 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: bildirge okuma baþarýsýz: %s\n"
 
-#: lib/query.c:708
+#: lib/query.c:709
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s spec dosyasýnýn sorgulanmasý baþarýsýz, çözümlenemiyor\n"
 
-#: lib/query.c:729
+#: lib/query.c:730
 msgid "no packages\n"
 msgstr "paket yok\n"
 
-#: lib/query.c:749
+#: lib/query.c:750
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "%s grubu hiç paket içermiyor\n"
 
-#: lib/query.c:759
+#: lib/query.c:760
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s tetikleyen paket yok\n"
 
-#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851
+#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852
 #, fuzzy, c-format
 msgid "malformed %s: %s\n"
 msgstr "%s okunamadý: %s.\n"
 
-#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856
+#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857
 #, fuzzy, c-format
 msgid "no package matches %s: %s\n"
 msgstr "%s tetikleyen paket yok\n"
 
-#: lib/query.c:867
+#: lib/query.c:868
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s gerektiren paket yok\n"
 
-#: lib/query.c:878
+#: lib/query.c:879
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s saðlayan paket yok\n"
 
-#: lib/query.c:912
+#: lib/query.c:913
 #, c-format
 msgid "file %s: %s\n"
 msgstr "dosya %s: %s\n"
 
-#: lib/query.c:916
+#: lib/query.c:917
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
 
-#: lib/query.c:943
+#: lib/query.c:944
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "geçersiz paket numarasý: %s\n"
 
-#: lib/query.c:946
+#: lib/query.c:947
 #, c-format
 msgid "package record number: %u\n"
 msgstr "paket kayýt numarasý: %u\n"
 
-#: lib/query.c:951
+#: lib/query.c:952
 #, c-format
 msgid "record %u could not be read\n"
 msgstr "%u. kayýt okunamadý\n"
 
-#: lib/query.c:962 lib/rpminstall.c:657
+#: lib/query.c:963 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
 
-#: lib/rpmal.c:673
+#: lib/rpmal.c:684
 #, fuzzy
 msgid "(added files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:781
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s EVET (db saðlar)\n"
@@ -2488,89 +2488,89 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:161
 msgid "Preparing..."
 msgstr "Hazýrlanýyor..."
 
-#: lib/rpminstall.c:162
+#: lib/rpminstall.c:163
 msgid "Preparing packages for installation..."
 msgstr "Kurulacak paketler hazýrlanýyor..."
 
-#: lib/rpminstall.c:296
+#: lib/rpminstall.c:299
 #, 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:308
+#: lib/rpminstall.c:311
 #, c-format
 msgid " ... as %s\n"
 msgstr "... %s olarak\n"
 
-#: lib/rpminstall.c:312
+#: lib/rpminstall.c:315
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:410
+#: lib/rpminstall.c:413
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s paketi yeniden konumlandýrýlamaz\n"
 
-#: lib/rpminstall.c:464
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dosyasýndan okuma hatalý\n"
 
-#: lib/rpminstall.c:470
+#: lib/rpminstall.c:473
 #, 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:482 lib/rpminstall.c:723
+#: lib/rpminstall.c:485 lib/rpminstall.c:726
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s yüklenemedi\n"
 
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
 
-#: lib/rpminstall.c:536 lib/rpminstall.c:1059
+#: lib/rpminstall.c:539 lib/rpminstall.c:1062
 msgid "failed dependencies:\n"
 msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
 
-#: lib/rpminstall.c:559
+#: lib/rpminstall.c:562
 msgid "installing binary packages\n"
 msgstr "icra edilebilir paketleri kuruluyor\n"
 
-#: lib/rpminstall.c:580
+#: lib/rpminstall.c:583
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamadý: %s\n"
 
-#: lib/rpminstall.c:660
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:684
+#: lib/rpminstall.c:687
 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:710
+#: lib/rpminstall.c:713
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/rpminstall.c:716
+#: lib/rpminstall.c:719
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s kuruluyor\n"
 
-#: lib/rpminstall.c:1052
+#: lib/rpminstall.c:1055
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2680,170 +2680,170 @@ msgstr "%s okuma eri
 msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
 
-#: lib/signature.c:122
+#: lib/signature.c:123
 msgid "file is not regular -- skipping size check\n"
 msgstr "dosya normal deðil -- uzunluk denetimi atlanýyor\n"
 
-#: lib/signature.c:131
+#: lib/signature.c:132
 #, 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:136
+#: lib/signature.c:137
 #, c-format
 msgid "  Actual size: %12d\n"
 msgstr "  Gerçek boyut: %12d\n"
 
-#: lib/signature.c:156
+#: lib/signature.c:157
 msgid "No signature\n"
 msgstr "Ýmza yok\n"
 
-#: lib/signature.c:160
+#: lib/signature.c:161
 msgid "Old PGP signature\n"
 msgstr "Eski PGP imzasý\n"
 
-#: lib/signature.c:171
+#: lib/signature.c:172
 msgid "Old (internal-only) signature!  How did you get that!?\n"
 msgstr "Eski imza !!! Bunu nasýl aldýn!?\n"
 
-#: lib/signature.c:225
+#: lib/signature.c:226
 #, c-format
 msgid "Signature: size(%d)+pad(%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668
-#: lib/signature.c:701
+#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669
+#: lib/signature.c:702
 #, fuzzy, c-format
 msgid "Could not exec %s: %s\n"
 msgstr "%s icra edilemedi: %s\n"
 
-#: lib/signature.c:320
+#: lib/signature.c:321
 msgid "pgp failed\n"
 msgstr "pgp hata verdi\n"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:327
+#: lib/signature.c:328
 msgid "pgp failed to write signature\n"
 msgstr "pgp imzasýnýn yazýlmasý baþarýsýz\n"
 
-#: lib/signature.c:332
+#: lib/signature.c:333
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP imza uzunluðu: %d\n"
 
-#: lib/signature.c:346 lib/signature.c:444
+#: lib/signature.c:347 lib/signature.c:445
 msgid "unable to read the signature\n"
 msgstr "imza okunamadý\n"
 
-#: lib/signature.c:351
+#: lib/signature.c:352
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "GPG imzasýnýn %d baytý alýndý\n"
 
-#: lib/signature.c:418
+#: lib/signature.c:419
 msgid "gpg failed\n"
 msgstr "gpg hata verdi\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:425
+#: lib/signature.c:426
 msgid "gpg failed to write signature\n"
 msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n"
 
-#: lib/signature.c:430
+#: lib/signature.c:431
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG imza uzunluðu: %d\n"
 
-#: lib/signature.c:449
+#: lib/signature.c:450
 #, 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:706 lib/signature.c:757
+#: lib/signature.c:707 lib/signature.c:758
 #, c-format
 msgid "Invalid %%_signature spec in macro file\n"
 msgstr "Makro dosyasýnda %%_signature spec geçersiz\n"
 
-#: lib/signature.c:736
+#: lib/signature.c:737
 #, 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:749
+#: lib/signature.c:750
 #, c-format
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n"
 
-#: lib/signature.c:793
+#: lib/signature.c:794
 #, fuzzy
 msgid "Header+Payload size: "
 msgstr "Baþlýk çok uzun"
 
-#: lib/signature.c:829
+#: lib/signature.c:830
 msgid "MD5 digest: "
 msgstr ""
 
-#: lib/signature.c:878
+#: lib/signature.c:879
 msgid "Header SHA1 digest: "
 msgstr ""
 
-#: lib/signature.c:1065
+#: lib/signature.c:1066
 #, fuzzy
 msgid "V3 RSA/MD5 signature: "
 msgstr "tüm MD5 imzalarýný atlar"
 
-#: lib/signature.c:1175
+#: lib/signature.c:1176
 msgid "Header "
 msgstr ""
 
-#: lib/signature.c:1176
+#: lib/signature.c:1177
 #, fuzzy
 msgid "V3 DSA signature: "
 msgstr "Ýmza yok\n"
 
-#: lib/signature.c:1251
+#: lib/signature.c:1252
 msgid "Verify signature: BAD PARAMETERS\n"
 msgstr ""
 
-#: lib/signature.c:1278
+#: lib/signature.c:1279
 msgid "Broken MD5 digest: UNSUPPORTED\n"
 msgstr ""
 
-#: lib/signature.c:1282
+#: lib/signature.c:1283
 #, fuzzy, c-format
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/transaction.c:173
+#: lib/transaction.c:177
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
 #. @innercontinue@
-#: lib/transaction.c:985
+#: lib/transaction.c:989
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
 
-#: lib/transaction.c:1076
+#: lib/transaction.c:1080
 msgid "getting list of mounted filesystems\n"
 msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
 
-#: lib/verify.c:323
+#: lib/verify.c:326
 #, c-format
 msgid "missing    %s"
 msgstr "eksik      %s"
 
-#: lib/verify.c:418
+#: lib/verify.c:421
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
 
-#: lib/verify.c:458
+#: lib/verify.c:461
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: deðiþmez baþlýk alaný özet denetimi baþarýsýz\n"
index 49144b7..8a653ed 100644 (file)
@@ -5,7 +5,10 @@
 #include "Python.h"
 #include "rpmio_internal.h"
 #include "rpmcli.h"    /* XXX for rpmCheckSig */
-#include "depends.h"   /* XXX for ts->rpmdb */
+
+#include "rpmfi.h"
+#include "rpmts.h"     /* XXX for ts->rpmdb */
+
 #include "legacy.h"
 #include "misc.h"
 #include "header_internal.h"
index 9da1446..0ad01fd 100644 (file)
 #include "Python.h"
 #include "rpmio_internal.h"
 #include "rpmcli.h"    /* XXX for rpmCheckSig */
-#include "depends.h"   /* XXX for ts->rpmdb */
+#include "rpmts.h"     /* XXX for ts->rpmdb */
 #include "legacy.h"
 #include "misc.h"
 #include "header_internal.h"
 #include "upgrade.h"
 
-extern int _rpmio_debug;
-
-/*@unused@*/ static inline Header headerAllocated(Header h) {
-    h->flags |= HEADERFLAG_ALLOCATED;
-    return 0;
-}
-
-/* XXX These names/constants have been removed from the rpmlib API. */
-enum {
-   RPMDEP_SENSE_REQUIRES,              /*!< requirement not satisfied. */
-   RPMDEP_SENSE_CONFLICTS              /*!< conflict was found. */
-};
-
-#ifdef __LCLINT__
-#undef PyObject_HEAD
-#define        PyObject_HEAD   int _PyObjectHead
-#endif
-
-void initrpm(void);
-
-/* from lib/misc.c */
-int rpmvercmp(const char * one, const char * two);
-
-
-/** \ingroup python
- */
-typedef struct rpmdbObject_s rpmdbObject;
-
-/** \ingroup python
- */
-typedef struct rpmdbMIObject_s rpmdbMIObject;
-
-/** \ingroup python
- */
-typedef struct rpmtransObject_s rpmtransObject;
-
-/** \ingroup python
- */
-typedef struct hdrObject_s hdrObject;
-
-/** \ingroup python
- */
-static PyObject * pyrpmError;
-
-/** \ingroup python
- * \class header
- * \brief A python header object represents an RPM package header.
- * 
- * All RPM packages have headers that provide metadata for the package.
- * Header objects can be returned by database queries or loaded from a
- * binary package on disk.
- * 
- * The headerFromPackage function loads the package header from a
- * package on disk.  It returns a tuple of a "isSource" flag and the
- * header object.  The "isSource" flag is set to 1 if the package
- * header was read from a source rpm or to 0 if the package header was
- * read from a binary rpm.
- * 
- * For example:
- * \code
- *     import os, rpm
- *  
- *     fd = os.open("/tmp/foo-1.0-1.i386.rpm", os.O_RDONLY)
- *     (header, isSource) = rpm.headerFromPackage(fd)
- *     fd.close()
- * \endcode
- * The Python interface to the header data is quite elegant.  It
- * presents the data in a dictionary form.  We'll take the header we
- * just loaded and access the data within it:
- * \code
- *     print header[rpm.RPMTAG_NAME]
- *     print header[rpm.RPMTAG_VERSION]
- *     print header[rpm.RPMTAG_RELEASE]
- * \endcode
- * in the case of our "foor-1.0-1.i386.rpm" package, this code would
- * output:
-\verbatim
-       foo
-       1.0
-       1
-\endverbatim
- * You make also access the header data by string name:
- * \code
- *     print header['name']
- * \endcode
- * This method of access is a bit slower because the name must be
- * translated into the tag number dynamically. You also must make sure
- * the strings in header lookups don't get translated, or the lookups
- * will fail.
- */
-
-/** \ingroup python
- * \name Class: header
- */
-/*@{*/
-
-/** \ingroup python
- */
-struct hdrObject_s {
-    PyObject_HEAD;
-    Header h;
-    char ** md5list;
-    char ** fileList;
-    char ** linkList;
-    int_32 * fileSizes;
-    int_32 * mtimes;
-    int_32 * uids, * gids;     /* XXX these tags are not used anymore */
-    unsigned short * rdevs;
-    unsigned short * modes;
-} ;
-
-/** \ingroup python
- */
-static PyObject * hdrKeyList(hdrObject * s, PyObject * args) {
-    PyObject * list, *o;
-    HeaderIterator iter;
-    int tag, type;
-
-    if (!PyArg_ParseTuple(args, "")) return NULL;
-
-    list = PyList_New(0);
-
-    iter = headerInitIterator(s->h);
-    while (headerNextIterator(iter, &tag, &type, NULL, NULL)) {
-        if (tag == HEADER_I18NTABLE) continue;
-
-       switch (type) {
-         case RPM_BIN_TYPE:
-         case RPM_INT32_TYPE:
-         case RPM_CHAR_TYPE:
-         case RPM_INT8_TYPE:
-         case RPM_INT16_TYPE:
-         case RPM_STRING_ARRAY_TYPE:
-         case RPM_STRING_TYPE:
-           PyList_Append(list, o=PyInt_FromLong(tag));
-           Py_DECREF(o);
-       }
-    }
-
-    headerFreeIterator(iter);
-
-    return list;
-}
-
-/** \ingroup python
- */
-static PyObject * hdrUnload(hdrObject * s, PyObject * args, PyObject *keywords) {
-    char * buf;
-    PyObject * rc;
-    int len, legacy = 0;
-    Header h;
-    static char *kwlist[] = { "legacyHeader", NULL};
-
-    if (!PyArg_ParseTupleAndKeywords(args, keywords, "|i", kwlist, &legacy))
-       return NULL; 
-
-    h = headerLink(s->h, "hdrUnload h");
-    /* XXX this legacy switch is a hack, needs to be removed. */
-    if (legacy) {
-       h = headerCopy(s->h);   /* XXX strip region tags, etc */
-       headerFree(s->h, "hdrUnload s->h");
-    }
-    len = headerSizeof(h, 0);
-    buf = headerUnload(h);
-    h = headerFree(h, "hdrUnload h");
-
-    if (buf == NULL || len == 0) {
-       PyErr_SetString(pyrpmError, "can't unload bad header\n");
-       return NULL;
-    }
-
-    rc = PyString_FromStringAndSize(buf, len);
-    free(buf);
-
-    return rc;
-}
-
-/** \ingroup python
- * Returns a list of these tuples for each item that failed:
- *     (attr_name, correctValue, currentValue)
- * It should be passed the file number to verify.
- */
-static PyObject * hdrVerifyFile(hdrObject * s, PyObject * args) {
-    int fileNumber;
-    rpmVerifyAttrs verifyResult = 0;
-    PyObject * list, * tuple, * attrName;
-    int type, count;
-    struct stat sb;
-    char buf[2048];
-    int i;
-    time_t timeInt;
-    struct tm * timeStruct;
-
-    if (!PyInt_Check(args)) {
-       PyErr_SetString(PyExc_TypeError, "integer expected");
-       return NULL;
-    }
-
-    fileNumber = (int) PyInt_AsLong(args);
-
-    {  rpmTransactionSet ts;
-       int scareMem = 1;
-       TFI_t fi;
-       int rc;
-
-       ts = rpmtransCreateSet(NULL, NULL);
-       fi = fiNew(ts, NULL, s->h, RPMTAG_BASENAMES, scareMem);
-       fi = tfiInit(fi, fileNumber);
-       if (fi != NULL && tfiNext(fi) >= 0) {
-           /* XXX this routine might use callbacks intelligently. */
-           rc = rpmVerifyFile(ts, fi, &verifyResult, RPMVERIFY_NONE);
-       } else
-           rc = 1;
-
-       fi = fiFree(fi, 1);
-       rpmtransFree(ts);
-
-       if (rc) {
-           Py_INCREF(Py_None);
-           return Py_None;
-       }
-    }
-
-    list = PyList_New(0);
-
-    if (!verifyResult) return list;
-
-    /* XXX Legacy tag needs to go away. */
-    if (!s->fileList) {
-       headerGetEntry(s->h, RPMTAG_OLDFILENAMES, &type, (void **) &s->fileList,
-                &count);
-    }
-
-    lstat(s->fileList[fileNumber], &sb);
-
-    if (verifyResult & RPMVERIFY_MD5) {
-       if (!s->md5list) {
-           headerGetEntry(s->h, RPMTAG_FILEMD5S, &type, (void **) &s->md5list,
-                    &count);
-       }
-
-       if (domd5(s->fileList[fileNumber], buf, 1)) {
-           strcpy(buf, "00000000000000000000000000000000");
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("checksum");
-       PyTuple_SetItem(tuple, 0, attrName);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(s->md5list[fileNumber]));
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    if (verifyResult & RPMVERIFY_FILESIZE) {
-       if (!s->fileSizes) {
-           headerGetEntry(s->h, RPMTAG_FILESIZES, &type, (void **) &s->fileSizes,
-                    &count);
-
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("size");
-       PyTuple_SetItem(tuple, 0, attrName);
-
-       sprintf(buf, "%d", 100);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(buf));
-       sprintf(buf, "%ld", sb.st_size);
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    if (verifyResult & RPMVERIFY_LINKTO) {
-       if (!s->linkList) {
-           headerGetEntry(s->h, RPMTAG_FILELINKTOS, &type, (void **) &s->linkList,
-                    &count);
-       }
-
-       i = readlink(s->fileList[fileNumber], buf, sizeof(buf));
-       if (i <= 0)
-           strcpy(buf, "(unknown)");
-       else
-           buf[i] = '\0';
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("link");
-       PyTuple_SetItem(tuple, 0, attrName);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(s->linkList[fileNumber]));
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    if (verifyResult & RPMVERIFY_MTIME) {
-       if (!s->mtimes) {
-           headerGetEntry(s->h, RPMTAG_FILEMTIMES, &type, (void **) &s->mtimes,
-                    &count);
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("time");
-       PyTuple_SetItem(tuple, 0, attrName);
-
-       timeInt = sb.st_mtime;
-       timeStruct = localtime(&timeInt);
-       strftime(buf, sizeof(buf) - 1, "%c", timeStruct);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(buf));
-
-       timeInt = s->mtimes[fileNumber];
-       timeStruct = localtime(&timeInt);
-       strftime(buf, sizeof(buf) - 1, "%c", timeStruct);
-
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    if (verifyResult & RPMVERIFY_RDEV) {
-       if (!s->rdevs) {
-           headerGetEntry(s->h, RPMTAG_FILERDEVS, &type, (void **) &s->rdevs,
-                    &count);
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("device");
-
-       PyTuple_SetItem(tuple, 0, attrName);
-       sprintf(buf, "0x%-4x", s->rdevs[fileNumber]);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(buf));
-       sprintf(buf, "0x%-4x", (unsigned int) sb.st_rdev);
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    /*
-     * RPMVERIFY_USER and RPM_VERIFY_GROUP are handled wrong here, but rpmlib.a
-     * doesn't do these correctly either. At least this is consistent.
-     *
-     * XXX Consistent? rpmlib.a verifies user/group quite well, thank you.
-     * XXX The code below does nothing useful. FILEUSERNAME needs to be
-     * XXX retrieved and looked up.
-     */
-    if (verifyResult & RPMVERIFY_USER) {
-       if (!s->uids) {
-           headerGetEntry(s->h, RPMTAG_FILEUIDS, &type, (void **) &s->uids,
-                    &count);
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("uid");
-       PyTuple_SetItem(tuple, 0, attrName);
-       sprintf(buf, "%d", s->uids[fileNumber]);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(buf));
-       sprintf(buf, "%d", sb.st_uid);
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    /*
-     * XXX The code below does nothing useful. FILEGROUPNAME needs to be
-     * XXX retrieved and looked up.
-     */
-    if (verifyResult & RPMVERIFY_GROUP) {
-       if (!s->gids) {
-           headerGetEntry(s->h, RPMTAG_FILEGIDS, &type, (void **) &s->gids,
-                    &count);
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("gid");
-       PyTuple_SetItem(tuple, 0, attrName);
-       sprintf(buf, "%d", s->gids[fileNumber]);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(buf));
-       sprintf(buf, "%d", sb.st_gid);
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    if (verifyResult & RPMVERIFY_MODE) {
-       if (!s->modes) {
-           headerGetEntry(s->h, RPMTAG_FILEMODES, &type, (void **) &s->modes,
-                    &count);
-       }
-
-       tuple = PyTuple_New(3);
-       attrName = PyString_FromString("permissions");
-       PyTuple_SetItem(tuple, 0, attrName);
-       sprintf(buf, "0%-4o", s->modes[fileNumber]);
-       PyTuple_SetItem(tuple, 1, PyString_FromString(buf));
-       sprintf(buf, "0%-4o", sb.st_mode);
-       PyTuple_SetItem(tuple, 2, PyString_FromString(buf));
-       PyList_Append(list, tuple);
-       Py_DECREF(tuple);
-    }
-
-    return list;
-}
-
-/** \ingroup python
- */
-static PyObject * hdrExpandFilelist(hdrObject * s, PyObject * args) {
-    expandFilelist (s->h);
-
-    Py_INCREF(Py_None);
-    return Py_None;
-}
-
-/** \ingroup python
- */
-static PyObject * hdrCompressFilelist(hdrObject * s, PyObject * args) {
-    compressFilelist (s->h);
-
-    Py_INCREF(Py_None);
-    return Py_None;
-}
-
-/* make a header with _all_ the tags we need */
-/** \ingroup python
- */
-static void mungeFilelist(Header h)
-{
-    const char ** fileNames = NULL;
-    int count = 0;
-
-    if (!headerIsEntry (h, RPMTAG_BASENAMES)
-       || !headerIsEntry (h, RPMTAG_DIRNAMES)
-       || !headerIsEntry (h, RPMTAG_DIRINDEXES))
-       compressFilelist(h);
-    
-    rpmBuildFileList(h, &fileNames, &count);
-
-    if (fileNames == NULL || count <= 0)
-       return;
-
-    /* XXX Legacy tag needs to go away. */
-    headerAddEntry(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE,
-                       fileNames, count);
-
-    free((void *)fileNames);
-}
-
-/** 
- */
-static PyObject * rhnUnload(hdrObject * s, PyObject * args) {
-    int len;
-    char * uh;
-    PyObject * rc;
-    Header h;
-
-    if (!PyArg_ParseTuple(args, ""))
-        return NULL;
-
-    h = headerLink(s->h, "rhnUnload h");
-
-    /* Retrofit a RHNPlatform: tag. */
-    if (!headerIsEntry(h, RPMTAG_RHNPLATFORM)) {
-       const char * arch;
-       int_32 at;
-       if (headerGetEntry(h, RPMTAG_ARCH, &at, (void **)&arch, NULL))
-           headerAddEntry(h, RPMTAG_RHNPLATFORM, at, arch, 1);
-    }
-
-    /* Legacy headers are forced into immutable region. */
-    if (!headerIsEntry(h, RPMTAG_HEADERIMMUTABLE)) {
-       Header nh = headerReload(h, RPMTAG_HEADERIMMUTABLE);
-       /* XXX Another unload/load cycle to "seal" the immutable region. */
-       uh = headerUnload(nh);
-       headerFree(nh, "rhnUnload nh");
-       h = headerLoad(uh);
-       headerAllocated(h);
-    }
-
-    /* All headers have SHA1 digest, compute and add if necessary. */
-    if (!headerIsEntry(h, RPMTAG_SHA1HEADER)) {
-       int_32 uht, uhc;
-       const char * digest;
-        size_t digestlen;
-        DIGEST_CTX ctx;
-
-       headerGetEntry(h, RPMTAG_HEADERIMMUTABLE, &uht, (void **)&uh, &uhc);
-
-       ctx = rpmDigestInit(PGPHASHALGO_SHA1, RPMDIGEST_NONE);
-        rpmDigestUpdate(ctx, uh, uhc);
-        rpmDigestFinal(ctx, (void **)&digest, &digestlen, 1);
-
-       headerAddEntry(h, RPMTAG_SHA1RHN, RPM_STRING_TYPE, digest, 1);
-
-       uh = headerFreeData(uh, uht);
-       digest = _free(digest);
-    }
-
-    len = headerSizeof(h, 0);
-    uh = headerUnload(h);
-    headerFree(h, "rhnUnload h");
-
-    rc = PyString_FromStringAndSize(uh, len);
-    free(uh);
-
-    return rc;
-}
-
-/** \ingroup python
- */
-static PyObject * hdrFullFilelist(hdrObject * s, PyObject * args) {
-    if (!PyArg_ParseTuple(args, ""))
-       return NULL;
-
-    mungeFilelist (s->h);
-
-    Py_INCREF(Py_None);
-    return Py_None;
-}
-
-/** \ingroup python
- */
-static PyObject * hdrSprintf(hdrObject * s, PyObject * args) {
-    char * fmt;
-    char * r;
-    errmsg_t err;
-    PyObject * result;
-
-    if (!PyArg_ParseTuple(args, "s", &fmt))
-       return NULL;
-
-    r = headerSprintf(s->h, fmt, rpmTagTable, rpmHeaderFormats, &err);
-    if (!r) {
-       PyErr_SetString(pyrpmError, err);
-       return NULL;
-    }
-
-    result = Py_BuildValue("s", r);
-    free(r);
-
-    return result;
-}
-
-
-/** \ingroup python
- */
-static struct PyMethodDef hdrMethods[] = {
-       {"keys",        (PyCFunction) hdrKeyList,       1 },
-       {"unload",      (PyCFunction) hdrUnload,        METH_VARARGS|METH_KEYWORDS },
-       {"verifyFile",  (PyCFunction) hdrVerifyFile,    1 },
-       {"expandFilelist",      (PyCFunction) hdrExpandFilelist,        1 },
-       {"compressFilelist",    (PyCFunction) hdrCompressFilelist,      1 },
-       {"fullFilelist",        (PyCFunction) hdrFullFilelist,  1 },
-       {"rhnUnload",   (PyCFunction) rhnUnload, METH_VARARGS },
-       {"sprintf",     (PyCFunction) hdrSprintf, METH_VARARGS },
-       {NULL,          NULL}           /* sentinel */
-};
-
-/** \ingroup python
- */
-static PyObject * hdrGetAttr(hdrObject * s, char * name) {
-    return Py_FindMethod(hdrMethods, (PyObject * ) s, name);
-}
-
-/** \ingroup python
- */
-static void hdrDealloc(hdrObject * s) {
-    if (s->h) headerFree(s->h, "hdrDealloc s->h");
-    if (s->md5list) free(s->md5list);
-    if (s->fileList) free(s->fileList);
-    if (s->linkList) free(s->linkList);
-    PyMem_DEL(s);
-}
-
-/** \ingroup python
- */
-static long tagNumFromPyObject (PyObject *item)
-{
-    char * str;
-    int i;
-
-    if (PyInt_Check(item)) {
-       return PyInt_AsLong(item);
-    } else if (PyString_Check(item)) {
-       str = PyString_AsString(item);
-       for (i = 0; i < rpmTagTableSize; i++)
-           if (!xstrcasecmp(rpmTagTable[i].name + 7, str)) break;
-       if (i < rpmTagTableSize) return rpmTagTable[i].val;
-    }
-    return -1;
-}
-
-/** \ingroup python
- */
-static PyObject * hdrSubscript(hdrObject * s, PyObject * item) {
-    int type, count, i, tag = -1;
-    void * data;
-    PyObject * o, * metao;
-    char ** stringArray;
-    int forceArray = 0;
-    int freeData = 0;
-    char * str;
-    struct headerSprintfExtension_s * ext = NULL;
-    const struct headerSprintfExtension_s * extensions = rpmHeaderFormats;
-
-    if (PyCObject_Check (item))
-        ext = PyCObject_AsVoidPtr(item);
-    else
-       tag = tagNumFromPyObject (item);
-    if (tag == -1 && PyString_Check(item)) {
-       /* if we still don't have the tag, go looking for the header
-          extensions */
-       str = PyString_AsString(item);
-       while (extensions->name) {
-           if (extensions->type == HEADER_EXT_TAG
-               && !xstrcasecmp(extensions->name + 7, str)) {
-               (const struct headerSprintfExtension *) ext = extensions;
-           }
-           extensions++;
-       }
-    }
-
-    if (ext) {
-        ext->u.tagFunction(s->h, &type, (const void **) &data, &count, &freeData);
-    } else {
-        if (tag == -1) {
-            PyErr_SetString(PyExc_KeyError, "unknown header tag");
-            return NULL;
-        }
-        
-        if (!rpmHeaderGetEntry(s->h, tag, &type, &data, &count)) {
-            Py_INCREF(Py_None);
-            return Py_None;
-        }
-    }
-
-    switch (tag) {
-      case RPMTAG_OLDFILENAMES:
-      case RPMTAG_FILESIZES:
-      case RPMTAG_FILESTATES:
-      case RPMTAG_FILEMODES:
-      case RPMTAG_FILEUIDS:
-      case RPMTAG_FILEGIDS:
-      case RPMTAG_FILERDEVS:
-      case RPMTAG_FILEMTIMES:
-      case RPMTAG_FILEMD5S:
-      case RPMTAG_FILELINKTOS:
-      case RPMTAG_FILEFLAGS:
-      case RPMTAG_ROOT:
-      case RPMTAG_FILEUSERNAME:
-      case RPMTAG_FILEGROUPNAME:
-       forceArray = 1;
-       break;
-      case RPMTAG_SUMMARY:
-      case RPMTAG_GROUP:
-      case RPMTAG_DESCRIPTION:
-       freeData = 1;
-       break;
-      default:
-        break;
-    }
-
-    switch (type) {
-      case RPM_BIN_TYPE:
-       o = PyString_FromStringAndSize(data, count);
-       break;
-
-      case RPM_INT32_TYPE:
-       if (count != 1 || forceArray) {
-           metao = PyList_New(0);
-           for (i = 0; i < count; i++) {
-               o = PyInt_FromLong(((int *) data)[i]);
-               PyList_Append(metao, o);
-               Py_DECREF(o);
-           }
-           o = metao;
-       } else {
-           o = PyInt_FromLong(*((int *) data));
-       }
-       break;
-
-      case RPM_CHAR_TYPE:
-      case RPM_INT8_TYPE:
-       if (count != 1 || forceArray) {
-           metao = PyList_New(0);
-           for (i = 0; i < count; i++) {
-               o = PyInt_FromLong(((char *) data)[i]);
-               PyList_Append(metao, o);
-               Py_DECREF(o);
-           }
-           o = metao;
-       } else {
-           o = PyInt_FromLong(*((char *) data));
-       }
-       break;
-
-      case RPM_INT16_TYPE:
-       if (count != 1 || forceArray) {
-           metao = PyList_New(0);
-           for (i = 0; i < count; i++) {
-               o = PyInt_FromLong(((short *) data)[i]);
-               PyList_Append(metao, o);
-               Py_DECREF(o);
-           }
-           o = metao;
-       } else {
-           o = PyInt_FromLong(*((short *) data));
-       }
-       break;
-
-      case RPM_STRING_ARRAY_TYPE:
-       stringArray = data;
-
-       metao = PyList_New(0);
-       for (i = 0; i < count; i++) {
-           o = PyString_FromString(stringArray[i]);
-           PyList_Append(metao, o);
-           Py_DECREF(o);
-       }
-       free (stringArray);
-       o = metao;
-       break;
-
-      case RPM_STRING_TYPE:
-       if (count != 1 || forceArray) {
-           stringArray = data;
-
-           metao = PyList_New(0);
-           for (i=0; i < count; i++) {
-               o = PyString_FromString(stringArray[i]);
-               PyList_Append(metao, o);
-               Py_DECREF(o);
-           }
-           o = metao;
-       } else {
-           o = PyString_FromString(data);
-           if (freeData)
-               free (data);
-       }
-       break;
-
-      default:
-       PyErr_SetString(PyExc_TypeError, "unsupported type in header");
-       return NULL;
-    }
-
-    return o;
-}
-
-/** \ingroup python
- */
-static PyMappingMethods hdrAsMapping = {
-       (inquiry) 0,                    /* mp_length */
-       (binaryfunc) hdrSubscript,      /* mp_subscript */
-       (objobjargproc)0,               /* mp_ass_subscript */
-};
-
-/** \ingroup python
- */
-static PyTypeObject hdrType = {
-       PyObject_HEAD_INIT(NULL)
-       0,                              /* ob_size */
-       "header",                       /* tp_name */
-       sizeof(hdrObject),              /* tp_size */
-       0,                              /* tp_itemsize */
-       (destructor) hdrDealloc,        /* tp_dealloc */
-       0,                              /* tp_print */
-       (getattrfunc) hdrGetAttr,       /* tp_getattr */
-       0,                              /* tp_setattr */
-       0,                              /* tp_compare */
-       0,                              /* tp_repr */
-       0,                              /* tp_as_number */
-       0,                              /* tp_as_sequence */
-       &hdrAsMapping,                  /* tp_as_mapping */
-};
-
-/*@}*/
-
-/** \ingroup python
- * \class rpmdbMatchIterator
- * \brief A python rpmdbMatchIterator object represents the result of an RPM
- *     database query.
- */
-
-/** \ingroup python
- * \name Class: rpmdbMatchIterator
- */
-/*@{*/
-
-/** \ingroup python
- */
-struct rpmdbObject_s {
-    PyObject_HEAD;
-    rpmdb db;
-    int offx;
-    int noffs;
-    int *offsets;
-} ;
-
-/** \ingroup python
- */
-struct rpmdbMIObject_s {
-    PyObject_HEAD;
-    rpmdbObject *db;
-    rpmdbMatchIterator mi;
-} ;
-
-/** \ingroup python
- */
-static PyObject *
-rpmdbMINext(rpmdbMIObject * s, PyObject * args) {
-    /* XXX assume header? */
-    Header h;
-    hdrObject * ho;
-    
-
-    h = rpmdbNextIterator(s->mi);
-    if (!h) {
-       Py_INCREF(Py_None);
-       return Py_None;
-    }
-
-    ho = PyObject_NEW(hdrObject, &hdrType);
-    ho->h = headerLink(h, "rpmdbMINext");
-    ho->fileList = ho->linkList = ho->md5list = NULL;
-    ho->uids = ho->gids = ho->mtimes = ho->fileSizes = NULL;
-    ho->modes = ho->rdevs = NULL;
-    
-    return (PyObject *) ho;
-}
-
-/** \ingroup python
- */
-static struct PyMethodDef rpmdbMIMethods[] = {
-       {"next",            (PyCFunction) rpmdbMINext,  1 },
-       {NULL,          NULL}           /* sentinel */
-};
-
-/** \ingroup python
- */
-static PyObject * rpmdbMIGetAttr (rpmdbObject *s, char *name) {
-    return Py_FindMethod (rpmdbMIMethods, (PyObject *) s, name);
-}
-
-/** \ingroup python
- */
-static void rpmdbMIDealloc(rpmdbMIObject * s) {
-    if (s && s->mi) {
-       rpmdbFreeIterator(s->mi);
-    }
-    Py_DECREF (s->db);
-    PyMem_DEL(s);
-}
-
-/** \ingroup python
- */
-static PyTypeObject rpmdbMIType = {
-       PyObject_HEAD_INIT(NULL)
-       0,                              /* ob_size */
-       "rpmdbMatchIterator",           /* tp_name */
-       sizeof(rpmdbMIObject),  /* tp_size */
-       0,                              /* tp_itemsize */
-       (destructor) rpmdbMIDealloc,    /* tp_dealloc */
-       0,                              /* tp_print */
-       (getattrfunc) rpmdbMIGetAttr,   /* tp_getattr */
-       0,                              /* tp_setattr */
-       0,                              /* tp_compare */
-       0,                              /* tp_repr */
-       0,                              /* tp_as_number */
-       0,                              /* tp_as_sequence */
-       0,                              /* tp_as_mapping */
-};
-
-/*@}*/
-
-/** \ingroup python
- * \class rpmdb
- * \brief A python rpmdb object represents an RPM database.
- * 
- * Instances of the rpmdb object provide access to the records of a
- * RPM database.  The records are accessed by index number.  To
- * retrieve the header data in the RPM database, the rpmdb object is
- * subscripted as you would access members of a list.
- * 
- * The rpmdb class contains the following methods:
- * 
- * - firstkey()        Returns the index of the first record in the database.
- * @deprecated Legacy, use rpmdbMatchIterator instead.
- * 
- * - nextkey(index) Returns the index of the next record after "index" in the
- *             database.
- * @param index        current rpmdb location
- * @deprecated Legacy, use rpmdbMatchIterator instead.
- * 
- * - findbyfile(file) Returns a list of the indexes to records that own file
- *             "file".
- * @param file absolute path to file
- * 
- * - findbyname(name) Returns a list of the indexes to records for packages
- *             named "name".
- * @param name package name
- * 
- * - findbyprovides(dep) Returns a list of the indexes to records for packages
- *             that provide "dep".
- * @param dep  provided dependency string
- * 
- * To obtain a rpmdb object, the opendb function in the rpm module
- * must be called.  The opendb function takes two optional arguments.
- * The first optional argument is a boolean flag that specifies if the
- * database is to be opened for read/write access or read-only access.
- * The second argument specifies an alternate root directory for RPM
- * to use.
- * 
- * An example of opening a database and retrieving the first header in
- * the database, then printing the name of the package that the header
- * represents:
- * \code
- *     import rpm
- *     rpmdb = rpm.opendb()
- *     index = rpmdb.firstkey()
- *     header = rpmdb[index]
- *     print header[rpm.RPMTAG_NAME]
- * \endcode
- * To print all of the packages in the database that match a package
- * name, the code will look like this:
- * \code
- *     import rpm
- *     rpmdb = rpm.opendb()
- *     indexes = rpmdb.findbyname("foo")
- *     for index in indexes:
- *         header = rpmdb[index]
- *         print "%s-%s-%s" % (header[rpm.RPMTAG_NAME],
- *                             header[rpm.RPMTAG_VERSION],
- *                             header[rpm.RPMTAG_RELEASE])
- * \endcode
- */
-
-/** \ingroup python
- * \name Class: rpmdb
- */
-/*@{*/
-
-/**
- */
-static PyObject * rpmdbFirst(rpmdbObject * s, PyObject * args) {
-    int first;
-
-    if (!PyArg_ParseTuple (args, "")) return NULL;
-
-    /* Acquire all offsets in one fell swoop. */
-    if (s->offsets == NULL || s->noffs <= 0) {
-       rpmdbMatchIterator mi;
-       Header h;
-
-       if (s->offsets)
-           free(s->offsets);
-       s->offsets = NULL;
-       s->noffs = 0;
-       mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, NULL, 0);
-       while ((h = rpmdbNextIterator(mi)) != NULL) {
-           s->noffs++;
-           s->offsets = realloc(s->offsets, s->noffs * sizeof(s->offsets[0]));
-           s->offsets[s->noffs-1] = rpmdbGetIteratorOffset(mi);
-       }
-       rpmdbFreeIterator(mi);
-    }
-
-    s->offx = 0;
-    if (s->offsets != NULL && s->offx < s->noffs)
-       first = s->offsets[s->offx++];
-    else
-       first = 0;
-
-    if (!first) {
-       PyErr_SetString(pyrpmError, "cannot find first entry in database\n");
-       return NULL;
-    }
-
-    return Py_BuildValue("i", first);
-}
-
-/**
- */
-static PyObject * rpmdbNext(rpmdbObject * s, PyObject * args) {
-    int where;
-
-    if (!PyArg_ParseTuple (args, "i", &where)) return NULL;
-
-    if (s->offsets == NULL || s->offx >= s->noffs) {
-       Py_INCREF(Py_None);
-       return Py_None;
-    }
-
-    where = s->offsets[s->offx++];
-
-    if (!where) {
-       Py_INCREF(Py_None);
-       return Py_None;
-    }
-
-    return Py_BuildValue("i", where);
-}
-
-/**
- */
-static PyObject * handleDbResult(rpmdbMatchIterator mi) {
-    PyObject * list, *o;
-
-    list = PyList_New(0);
-
-    /* XXX FIXME: unnecessary header mallocs are side effect here */
-    if (mi != NULL) {
-       while (rpmdbNextIterator(mi)) {
-           PyList_Append(list, o=PyInt_FromLong(rpmdbGetIteratorOffset(mi)));
-           Py_DECREF(o);
-       }
-       rpmdbFreeIterator(mi);
-    }
-
-    return list;
-}
-
-/**
- */
-static PyObject * rpmdbByFile(rpmdbObject * s, PyObject * args) {
-    char * str;
-
-    if (!PyArg_ParseTuple(args, "s", &str)) return NULL;
-
-    return handleDbResult(rpmdbInitIterator(s->db, RPMTAG_BASENAMES, str, 0));
-}
-
-/**
- */
-static PyObject * rpmdbByName(rpmdbObject * s, PyObject * args) {
-    char * str;
-
-    if (!PyArg_ParseTuple(args, "s", &str)) return NULL;
-
-    return handleDbResult(rpmdbInitIterator(s->db, RPMTAG_NAME, str, 0));
-}
-
-/**
- */
-static PyObject * rpmdbByProvides(rpmdbObject * s, PyObject * args) {
-    char * str;
-
-    if (!PyArg_ParseTuple(args, "s", &str)) return NULL;
-
-    return handleDbResult(rpmdbInitIterator(s->db, RPMTAG_PROVIDENAME, str, 0));
-}
-
-/**
- */
-static rpmdbMIObject *
-py_rpmdbInitIterator (rpmdbObject * s, PyObject * args) {
-    PyObject *index = NULL;
-    char *key = NULL;
-    int len = 0, tag = -1;
-    rpmdbMIObject * mio;
-    
-    if (!PyArg_ParseTuple(args, "|Ozi", &index, &key, &len))
-       return NULL;
+#include "db-py.h"
+#include "header-py.h"
 
-    if (index == NULL)
-       tag = 0;
-    else if ((tag = tagNumFromPyObject (index)) == -1) {
-       PyErr_SetString(PyExc_TypeError, "unknown tag type");
-       return NULL;
-    }
-    
-    mio = (rpmdbMIObject *) PyObject_NEW(rpmdbMIObject, &rpmdbMIType);
-    if (mio == NULL) {
-       PyErr_SetString(pyrpmError, "out of memory creating rpmdbMIObject");
-       return NULL;
-    }
-    
-    mio->mi = rpmdbInitIterator(s->db, tag, key, len);
-    mio->db = s;
-    Py_INCREF (mio->db);
-    
-    return mio;
-}
+extern int _rpmio_debug;
 
-/**
- */
-static struct PyMethodDef rpmdbMethods[] = {
-       {"firstkey",        (PyCFunction) rpmdbFirst,   1 },
-       {"nextkey",         (PyCFunction) rpmdbNext,    1 },
-       {"findbyfile",      (PyCFunction) rpmdbByFile, 1 },
-       {"findbyname",      (PyCFunction) rpmdbByName, 1 },
-       {"findbyprovides",  (PyCFunction) rpmdbByProvides, 1 },
-       {"match",           (PyCFunction) py_rpmdbInitIterator, 1 },
-       {NULL,          NULL}           /* sentinel */
+/* XXX These names/constants have been removed from the rpmlib API. */
+enum {
+   RPMDEP_SENSE_REQUIRES,              /*!< requirement not satisfied. */
+   RPMDEP_SENSE_CONFLICTS              /*!< conflict was found. */
 };
 
-/**
- */
-static PyObject * rpmdbGetAttr(rpmdbObject * s, char * name) {
-    return Py_FindMethod(rpmdbMethods, (PyObject * ) s, name);
-}
-
-/**
- */
-static void rpmdbDealloc(rpmdbObject * s) {
-    if (s->offsets) {
-       free(s->offsets);
-    }
-    if (s->db) {
-       rpmdbClose(s->db);
-    }
-    PyMem_DEL(s);
-}
-
-#ifndef DYINGSOON      /* XXX OK, when? */
-/**
- */
-static int
-rpmdbLength(rpmdbObject * s) {
-    int count = 0;
-
-    {  rpmdbMatchIterator mi;
-
-       /* RPMDBI_PACKAGES */
-       mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, NULL, 0);
-       while (rpmdbNextIterator(mi) != NULL)
-           count++;
-       rpmdbFreeIterator(mi);
-    }
-
-    return count;
-}
-
-/**
- */
-static hdrObject *
-rpmdbSubscript(rpmdbObject * s, PyObject * key) {
-    int offset;
-    hdrObject * h;
-
-    if (!PyInt_Check(key)) {
-       PyErr_SetString(PyExc_TypeError, "integer expected");
-       return NULL;
-    }
-
-    offset = (int) PyInt_AsLong(key);
-
-    h = PyObject_NEW(hdrObject, &hdrType);
-    h->h = NULL;
-    {  rpmdbMatchIterator mi;
-       mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, &offset, sizeof(offset));
-       if ((h->h = rpmdbNextIterator(mi)) != NULL)
-           h->h = headerLink(h->h, "rpmdbSubscript");
-       rpmdbFreeIterator(mi);
-    }
-    h->fileList = h->linkList = h->md5list = NULL;
-    h->uids = h->gids = h->mtimes = h->fileSizes = NULL;
-    h->modes = h->rdevs = NULL;
-    if (!h->h) {
-       Py_DECREF(h);
-       PyErr_SetString(pyrpmError, "cannot read rpmdb entry");
-       return NULL;
-    }
+#ifdef __LCLINT__
+#undef PyObject_HEAD
+#define        PyObject_HEAD   int _PyObjectHead
+#endif
 
-    return h;
-}
+void initrpm(void);
 
-/**
- */
-static PyMappingMethods rpmdbAsMapping = {
-       (inquiry) rpmdbLength,          /* mp_length */
-       (binaryfunc) rpmdbSubscript,    /* mp_subscript */
-       (objobjargproc)0,               /* mp_ass_subscript */
-};
-#endif
+/* from lib/misc.c */
+int rpmvercmp(const char * one, const char * two);
 
-/**
+/** \ingroup python
  */
-static PyTypeObject rpmdbType = {
-       PyObject_HEAD_INIT(NULL)
-       0,                              /* ob_size */
-       "rpmdb",                        /* tp_name */
-       sizeof(rpmdbObject),            /* tp_size */
-       0,                              /* tp_itemsize */
-       (destructor) rpmdbDealloc,      /* tp_dealloc */
-       0,                              /* tp_print */
-       (getattrfunc) rpmdbGetAttr,     /* tp_getattr */
-       0,                              /* tp_setattr */
-       0,                              /* tp_compare */
-       0,                              /* tp_repr */
-       0,                              /* tp_as_number */
-       0,                              /* tp_as_sequence */
-#ifndef DYINGSOON
-       &rpmdbAsMapping,                /* tp_as_mapping */
-#else
-       0,
-#endif
-};
-
-/*@}*/
+typedef struct rpmtransObject_s rpmtransObject;
 
 /** \ingroup python
  * \name Class: rpmtrans
@@ -1342,9 +168,12 @@ static PyObject * rpmtransAdd(rpmtransObject * s, PyObject * args) {
     PyObject * key;
     char * how = NULL;
     int isUpgrade = 0;
+    PyObject * hObj;
 
     if (!PyArg_ParseTuple(args, "OO|s", &h, &key, &how)) return NULL;
-    if (h->ob_type != &hdrType) {
+
+    hObj = (PyObject *) h;
+    if (hObj->ob_type != &hdrType) {
        PyErr_SetString(PyExc_TypeError, "bad type for header argument");
        return NULL;
     }
@@ -1356,9 +185,9 @@ static PyObject * rpmtransAdd(rpmtransObject * s, PyObject * args) {
        isUpgrade = 1;
 
     if (how && !strcmp(how, "a"))
-       rpmtransAvailablePackage(s->ts, h->h, key);
+       rpmtransAvailablePackage(s->ts, hdrGetHeader(h), key);
     else
-       rpmtransAddPackage(s->ts, h->h, key, isUpgrade, NULL);
+       rpmtransAddPackage(s->ts, hdrGetHeader(h), key, isUpgrade, NULL);
 
     /* This should increment the usage count for me */
     if (key) {
@@ -1380,7 +209,7 @@ static PyObject * rpmtransRemove(rpmtransObject * s, PyObject * args) {
         return NULL;
 
     /* XXX: Copied hack from ../lib/rpminstall.c, rpmErase() */
-    mi = rpmdbInitIterator(s->dbo->db, RPMDBI_LABEL, name, 0);
+    mi = rpmdbInitIterator(dbFromDb(s->dbo), RPMDBI_LABEL, name, 0);
     count = rpmdbGetIteratorCount(mi);
     if (count <= 0) {
         PyErr_SetString(pyrpmError, "package not installed");
@@ -1407,14 +236,15 @@ static PyObject * rpmtransDepCheck(rpmtransObject * s, PyObject * args) {
     int numConflicts;
     PyObject * list, * cf;
     int i;
+    int allSuggestions = 0;
 
-    if (!PyArg_ParseTuple(args, "")) return NULL;
+    if (!PyArg_ParseTuple(args, "|i", &allSuggestions)) return NULL;
 
     rpmdepCheck(s->ts, &conflicts, &numConflicts);
     if (numConflicts) {
        list = PyList_New(0);
 
-       /* XXX TODO: rpm >= 4.0.3 can return multiple suggested keys. */
+       /* XXX TODO: rpmlib >= 4.0.3 can return multiple suggested keys. */
        for (i = 0; i < numConflicts; i++) {
 #ifdef DYING
            cf = Py_BuildValue("((sss)(ss)iOi)", conflicts[i].byName,
@@ -1542,6 +372,7 @@ static void * tsCallback(const void * hd, const rpmCallbackType what,
     const Header h = (Header) hd;
 
     if (cbInfo->pythonError) return NULL;
+    if (cbInfo->cb == Py_None) return NULL;
 
     if (!pkgKey) pkgKey = Py_None;
     transactionSetHeader = h;    
@@ -1717,7 +548,7 @@ static PyObject * rpmtransCreate(PyObject * self, PyObject * args) {
     char * rootPath = "/";
 
     if (!PyArg_ParseTuple(args, "|sO", &rootPath, &db)) return NULL;
-    if (db && db->ob_type != &rpmdbType) {
+    if (db && ((PyObject *) db)->ob_type != &rpmdbType) {
        PyErr_SetString(PyExc_TypeError, "bad type for database argument");
        return NULL;
     }
@@ -1725,10 +556,10 @@ static PyObject * rpmtransCreate(PyObject * self, PyObject * args) {
     o = (void *) PyObject_NEW(rpmtransObject, &rpmtransType);
 
     Py_XINCREF(db);
-    o->dbo = db;       /* XXX DYING: separate refcounts is bad craziness */
+    o->dbo = db;
     o->scriptFd = NULL;
     o->ts = rpmtransCreateSet(NULL, rootPath);
-    o->ts->rpmdb = (db ? db->db : NULL);
+    o->ts->rpmdb = (db ? dbFromDb(db) : NULL);
     o->keyList = PyList_New(0);
 
     return (void *) o;
@@ -1864,16 +695,16 @@ static PyObject * findUpgradeSet(PyObject * self, PyObject * args) {
     list.packages = alloca(sizeof(list.packages) * list.numPackages);
     for (i = 0; i < list.numPackages; i++) {
        hdr = (hdrObject *) PyList_GetItem(hdrList, i);
-       if (hdr->ob_type != &hdrType) {
+       if (((PyObject *) hdr)->ob_type != &hdrType) {
            PyErr_SetString(PyExc_TypeError, "list of headers expected");
            return NULL;
        }
        list.packages[i] = alloca(sizeof(struct packageInfo));
-       list.packages[i]->h = hdr->h;
+       list.packages[i]->h = hdrGetHeader(hdr);
        list.packages[i]->selected = 0;
        list.packages[i]->data = hdr;
 
-       headerGetEntry(hdr->h, RPMTAG_NAME, NULL,
+       headerGetEntry(list.packages[i]->h, RPMTAG_NAME, NULL,
                      (void **) &list.packages[i]->name, NULL);
     }
 
@@ -1897,151 +728,6 @@ static PyObject * findUpgradeSet(PyObject * self, PyObject * args) {
 
 /**
  */
-static PyObject * rpmHeaderFromPackage(PyObject * self, PyObject * args) {
-    hdrObject * h;
-    Header header;
-    FD_t fd;
-    int rawFd;
-    int isSource = 0;
-    rpmRC rc;
-
-    if (!PyArg_ParseTuple(args, "i", &rawFd)) return NULL;
-
-    fd = fdDup(rawFd);
-    {  rpmTransactionSet ts;
-       ts = rpmtransCreateSet(NULL, NULL);
-       rc = rpmReadPackageFile(ts, fd, "rpmHeaderFromPackage", &header);
-       rpmtransFree(ts);
-    }
-    Fclose(fd);
-
-    switch (rc) {
-    case RPMRC_BADSIZE:
-    case RPMRC_OK:
-       h = (hdrObject *) PyObject_NEW(PyObject, &hdrType);
-       h->h = header;
-       h->fileList = h->linkList = h->md5list = NULL;
-       h->uids = h->gids = h->mtimes = h->fileSizes = NULL;
-       h->modes = h->rdevs = NULL;
-       isSource = headerIsEntry(header, RPMTAG_SOURCEPACKAGE);
-       break;
-
-    case RPMRC_BADMAGIC:
-       Py_INCREF(Py_None);
-       h = (hdrObject *) Py_None;
-       break;
-
-    case RPMRC_FAIL:
-    case RPMRC_SHORTREAD:
-    default:
-       PyErr_SetString(pyrpmError, "error reading package");
-       return NULL;
-    }
-
-    return Py_BuildValue("(Ni)", h, isSource);
-}
-
-/**
- */
-static PyObject * hdrLoad(PyObject * self, PyObject * args) {
-    char * obj, * copy=NULL;
-    Header hdr;
-    hdrObject * h;
-    int len;
-
-    if (!PyArg_ParseTuple(args, "s#", &obj, &len)) return NULL;
-    
-    /* malloc is needed to avoid surprises from data swab in headerLoad(). */
-    copy = malloc(len);
-    if (copy == NULL) {
-       PyErr_SetString(pyrpmError, "out of memory");
-       return NULL;
-    }
-    memcpy (copy, obj, len);
-
-    hdr = headerLoad(copy);
-    if (!hdr) {
-       PyErr_SetString(pyrpmError, "bad header");
-       return NULL;
-    }
-    headerAllocated(hdr);
-    compressFilelist (hdr);
-    providePackageNVR (hdr);
-
-    h = (hdrObject *) PyObject_NEW(PyObject, &hdrType);
-    h->h = hdr;
-    h->fileList = h->linkList = h->md5list = NULL;
-    h->uids = h->gids = h->mtimes = h->fileSizes = NULL;
-    h->modes = h->rdevs = NULL;
-
-    return (PyObject *) h;
-}
-
-/**
- */
-static PyObject * rhnLoad(PyObject * self, PyObject * args) {
-    char * obj, * copy=NULL;
-    Header hdr;
-    hdrObject * h;
-    int len;
-
-    if (!PyArg_ParseTuple(args, "s#", &obj, &len)) return NULL;
-    
-    /* malloc is needed to avoid surprises from data swab in headerLoad(). */
-    copy = malloc(len);
-    if (copy == NULL) {
-       PyErr_SetString(pyrpmError, "out of memory");
-       return NULL;
-    }
-    memcpy (copy, obj, len);
-
-    hdr = headerLoad(copy);
-    if (!hdr) {
-       PyErr_SetString(pyrpmError, "bad header");
-       return NULL;
-    }
-    headerAllocated(hdr);
-
-    /* XXX avoid the false OK's from rpmverifyDigest() with missing tags. */
-    if (!headerIsEntry(hdr, RPMTAG_HEADERIMMUTABLE)) {
-       PyErr_SetString(pyrpmError, "bad header, not immutable");
-       headerFree(hdr, "rhnLoad hdr #1");
-       return NULL;
-    }
-
-    /* XXX avoid the false OK's from rpmverifyDigest() with missing tags. */
-    if (!headerIsEntry(hdr, RPMTAG_SHA1HEADER)
-    &&  !headerIsEntry(hdr, RPMTAG_SHA1RHN)) {
-       PyErr_SetString(pyrpmError, "bad header, no digest");
-       headerFree(hdr, "rhnLoad hdr #2");
-       return NULL;
-    }
-
-    if (rpmVerifyDigest(hdr)) {
-       PyErr_SetString(pyrpmError, "bad header, digest check failed");
-       headerFree(hdr, "rhnLoad hdr #3");
-       return NULL;
-    }
-
-    /* Retrofit a RHNPlatform: tag. */
-    if (!headerIsEntry(hdr, RPMTAG_RHNPLATFORM)) {
-       const char * arch;
-       int_32 at;
-       if (headerGetEntry(hdr, RPMTAG_ARCH, &at, (void **)&arch, NULL))
-           headerAddEntry(hdr, RPMTAG_RHNPLATFORM, at, arch, 1);
-    }
-
-    h = (hdrObject *) PyObject_NEW(PyObject, &hdrType);
-    h->h = hdr;
-    h->fileList = h->linkList = h->md5list = NULL;
-    h->uids = h->gids = h->mtimes = h->fileSizes = NULL;
-    h->modes = h->rdevs = NULL;
-
-    return (PyObject *) h;
-}
-
-/**
- */
 static PyObject * rpmInitDB(PyObject * self, PyObject * args) {
     char *root;
     int forWrite = 0;
@@ -2066,217 +752,6 @@ static PyObject * rpmInitDB(PyObject * self, PyObject * args) {
 
 /**
  */
-static rpmdbObject * rpmOpenDB(PyObject * self, PyObject * args) {
-    rpmdbObject * o;
-    char * root = "";
-    int forWrite = 0;
-
-    if (!PyArg_ParseTuple(args, "|is", &forWrite, &root)) return NULL;
-
-    o = PyObject_NEW(rpmdbObject, &rpmdbType);
-    o->db = NULL;
-    o->offx = 0;
-    o->noffs = 0;
-    o->offsets = NULL;
-
-    if (rpmdbOpen(root, &o->db, forWrite ? O_RDWR | O_CREAT: O_RDONLY, 0644)) {
-       char * errmsg = "cannot open database in %s";
-       char * errstr = NULL;
-       int errsize;
-
-       Py_DECREF(o);
-       /* PyErr_SetString should take varargs... */
-       errsize = strlen(errmsg) + *root == '\0' ? 15 /* "/var/lib/rpm" */ : strlen(root);
-       errstr = alloca(errsize);
-       snprintf(errstr, errsize, errmsg, *root == '\0' ? "/var/lib/rpm" : root);
-       PyErr_SetString(pyrpmError, errstr);
-       return NULL;
-    }
-
-    return o;
-}
-
-/**
- */
-static PyObject * rebuildDB (PyObject * self, PyObject * args) {
-    char * root = "";
-
-    if (!PyArg_ParseTuple(args, "s", &root)) return NULL;
-
-    return Py_BuildValue("i", rpmdbRebuild(root));
-}
-
-/**
- */
-static PyObject * rpmReadHeaders (FD_t fd) {
-    PyObject * list;
-    Header header;
-    hdrObject * h;
-
-    if (!fd) {
-       PyErr_SetFromErrno(pyrpmError);
-       return NULL;
-    }
-
-    list = PyList_New(0);
-    Py_BEGIN_ALLOW_THREADS
-    header = headerRead(fd, HEADER_MAGIC_YES);
-
-    Py_END_ALLOW_THREADS
-    while (header) {
-       compressFilelist (header);
-       providePackageNVR (header);
-       h = (hdrObject *) PyObject_NEW(PyObject, &hdrType);
-       h->h = header;
-       h->fileList = h->linkList = h->md5list = NULL;
-       h->uids = h->gids = h->mtimes = h->fileSizes = NULL;
-       h->modes = h->rdevs = NULL;
-       if (PyList_Append(list, (PyObject *) h)) {
-           Py_DECREF(list);
-           Py_DECREF(h);
-           return NULL;
-       }
-
-       Py_DECREF(h);
-
-       Py_BEGIN_ALLOW_THREADS
-       header = headerRead(fd, HEADER_MAGIC_YES);
-       Py_END_ALLOW_THREADS
-    }
-
-    return list;
-}
-
-/**
- */
-static PyObject * rpmHeaderFromFD(PyObject * self, PyObject * args) {
-    FD_t fd;
-    int fileno;
-    PyObject * list;
-
-    if (!PyArg_ParseTuple(args, "i", &fileno)) return NULL;
-    fd = fdDup(fileno);
-
-    list = rpmReadHeaders (fd);
-    Fclose(fd);
-
-    return list;
-}
-
-/**
- */
-static PyObject * rpmHeaderFromFile(PyObject * self, PyObject * args) {
-    char * filespec;
-    FD_t fd;
-    PyObject * list;
-
-    if (!PyArg_ParseTuple(args, "s", &filespec)) return NULL;
-    fd = Fopen(filespec, "r.fdio");
-
-    if (!fd) {
-       PyErr_SetFromErrno(pyrpmError);
-       return NULL;
-    }
-
-    list = rpmReadHeaders (fd);
-    Fclose(fd);
-
-    return list;
-}
-
-/**
- * This assumes the order of list matches the order of the new headers, and
- * throws an exception if that isn't true.
- */
-static int rpmMergeHeaders(PyObject * list, FD_t fd, int matchTag) {
-    Header newH;
-    HeaderIterator iter;
-    int_32 * newMatch, * oldMatch;
-    hdrObject * ho;
-    int count = 0;
-    int type, c, tag;
-    void * p;
-
-    Py_BEGIN_ALLOW_THREADS
-    newH = headerRead(fd, HEADER_MAGIC_YES);
-
-    Py_END_ALLOW_THREADS
-    while (newH) {
-       if (!headerGetEntry(newH, matchTag, NULL, (void **) &newMatch, NULL)) {
-           PyErr_SetString(pyrpmError, "match tag missing in new header");
-           return 1;
-       }
-
-       ho = (hdrObject *) PyList_GetItem(list, count++);
-       if (!ho) return 1;
-
-       if (!headerGetEntry(ho->h, matchTag, NULL, (void **) &oldMatch, NULL)) {
-           PyErr_SetString(pyrpmError, "match tag missing in new header");
-           return 1;
-       }
-
-       if (*newMatch != *oldMatch) {
-           PyErr_SetString(pyrpmError, "match tag mismatch");
-           return 1;
-       }
-
-       if (ho->md5list) free(ho->md5list);
-       if (ho->fileList) free(ho->fileList);
-       if (ho->linkList) free(ho->linkList);
-
-       ho->md5list = NULL;
-       ho->fileList = NULL;
-       ho->linkList = NULL;
-
-       iter = headerInitIterator(newH);
-
-       while (headerNextIterator(iter, &tag, &type, (void *) &p, &c)) {
-           /* could be dupes */
-           headerRemoveEntry(ho->h, tag);
-           headerAddEntry(ho->h, tag, type, p, c);
-           headerFreeData(p, type);
-       }
-
-       headerFreeIterator(iter);
-
-       Py_BEGIN_ALLOW_THREADS
-       newH = headerRead(fd, HEADER_MAGIC_YES);
-       Py_END_ALLOW_THREADS
-    }
-
-    return 0;
-}
-
-static PyObject * rpmMergeHeadersFromFD(PyObject * self, PyObject * args) {
-    FD_t fd;
-    int fileno;
-    PyObject * list;
-    int rc;
-    int matchTag;
-
-    if (!PyArg_ParseTuple(args, "Oii", &list, &fileno, &matchTag)) return NULL;
-
-    if (!PyList_Check(list)) {
-       PyErr_SetString(PyExc_TypeError, "first parameter must be a list");
-       return NULL;
-    }
-
-    fd = fdDup(fileno);
-
-    rc = rpmMergeHeaders (list, fd, matchTag);
-    Fclose(fd);
-
-    if (rc) {
-       return NULL;
-    }
-
-    Py_INCREF(Py_None);
-    return Py_None;
-}
-
-
-/**
- */
 static PyObject * errorCB = NULL, * errorData = NULL;
 
 /**
@@ -2346,47 +821,6 @@ static PyObject * errorString (PyObject * self, PyObject * args) {
 
 /**
  */
-static PyObject * versionCompare (PyObject * self, PyObject * args) {
-    hdrObject * h1, * h2;
-
-    if (!PyArg_ParseTuple(args, "O!O!", &hdrType, &h1, &hdrType, &h2)) return NULL;
-
-    return Py_BuildValue("i", rpmVersionCompare(h1->h, h2->h));
-}
-
-/**
- */
-static PyObject * labelCompare (PyObject * self, PyObject * args) {
-    char *v1, *r1, *e1, *v2, *r2, *e2;
-    int rc;
-
-    if (!PyArg_ParseTuple(args, "(zzz)(zzz)",
-                         &e1, &v1, &r1,
-                         &e2, &v2, &r2)) return NULL;
-
-    if (e1 && !e2)
-       return Py_BuildValue("i", 1);
-    else if (!e1 && e2)
-       return Py_BuildValue("i", -1);
-    else if (e1 && e2) {
-       int ep1, ep2;
-       ep1 = atoi (e1);
-       ep2 = atoi (e2);
-       if (ep1 < ep2)
-           return Py_BuildValue("i", -1);
-       else if (ep1 > ep2)
-           return Py_BuildValue("i", 1);
-    }
-
-    rc = rpmvercmp(v1, v2);
-    if (rc)
-       return Py_BuildValue("i", rc);
-
-    return Py_BuildValue("i", rpmvercmp(r1, r2));
-}
-
-/**
- */
 static PyObject * checkSig (PyObject * self, PyObject * args) {
     char * filename;
     int flags;
@@ -2414,18 +848,12 @@ static PyObject * checkSig (PyObject * self, PyObject * args) {
 /**
  */
 static PyObject * getTsHeader (PyObject * self, PyObject * args) {
-    hdrObject * h;
 
     if (!PyArg_ParseTuple(args, ""))
        return NULL;
     
     if (transactionSetHeader) {
-       h = (hdrObject *) PyObject_NEW(PyObject, &hdrType);
-       h->h = headerLink(transactionSetHeader, "checkSig");
-       h->fileList = h->linkList = h->md5list = NULL;
-       h->uids = h->gids = h->mtimes = h->fileSizes = NULL;
-       h->modes = h->rdevs = NULL;
-       return (PyObject *) h;
+       return (PyObject *) createHeaderObject(transactionSetHeader);
     }
     Py_INCREF(Py_None);
     return (PyObject *) Py_None;
@@ -2698,6 +1126,8 @@ void initrpm(void) {
     REGISTER_ENUM(RPMCALLBACK_UNINST_PROGRESS);
     REGISTER_ENUM(RPMCALLBACK_UNINST_START);
     REGISTER_ENUM(RPMCALLBACK_UNINST_STOP);
+    REGISTER_ENUM(RPMCALLBACK_UNPACK_ERROR);
+    REGISTER_ENUM(RPMCALLBACK_CPIO_ERROR);
 
     REGISTER_ENUM(RPMPROB_BADARCH);
     REGISTER_ENUM(RPMPROB_BADOS);
@@ -2730,6 +1160,11 @@ void initrpm(void) {
     REGISTER_ENUM(RPMLOG_INFO);
     REGISTER_ENUM(RPMLOG_DEBUG);
 
+    REGISTER_ENUM(RPMMIRE_DEFAULT);
+    REGISTER_ENUM(RPMMIRE_STRCMP);
+    REGISTER_ENUM(RPMMIRE_REGEX);
+    REGISTER_ENUM(RPMMIRE_GLOB);
+
 }
 
 /*@}*/
index 1eda351..4a4d4f8 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -20,7 +20,7 @@ Name: rpm
 %define version 4.1
 Version: %{version}
 %{expand: %%define rpm_version %{version}}
-Release: 0.04
+Release: 0.05
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
 Copyright: GPL
@@ -521,6 +521,9 @@ fi
 %{__prefix}/include/popt.h
 
 %changelog
+* Thu Apr 11 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.05
+- rescusitate --rebuild.
+
 * Wed Apr 10 2002 Jeff Johnsion <jbj@redhat.com> 4.1-0.04
 - beecrypt: add types.h, eliminate need for config.gnu.h.
 
index 6e44398..2b0a198 100644 (file)
@@ -20,7 +20,7 @@ Name: rpm
 %define version @VERSION@
 Version: %{version}
 %{expand: %%define rpm_version %{version}}
-Release: 0.04
+Release: 0.05
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
 Copyright: GPL
@@ -521,6 +521,9 @@ fi
 %{__prefix}/include/popt.h
 
 %changelog
+* Thu Apr 11 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.05
+- rescusitate --rebuild.
+
 * Wed Apr 10 2002 Jeff Johnsion <jbj@redhat.com> 4.1-0.04
 - beecrypt: add types.h, eliminate need for config.gnu.h.
 
diff --git a/rpmqv.c b/rpmqv.c
index f355f0b..66967a5 100755 (executable)
--- a/rpmqv.c
+++ b/rpmqv.c
@@ -278,7 +278,11 @@ static void printUsage(void)
 }
 
 /*@-mods@*/ /* FIX: shrug */
-int main(int argc, const char ** argv, char ** envp)
+#if defined(__GLIBC__) || defined(__LCLINT__)
+int main(int argc, const char ** argv)
+#else
+int main(int argc, const char ** argv, /*@unused@*/ char ** envp)
+#endif
        /*@globals __assert_program_name, rpmEVR, RPMVERSION,
                rpmGlobalMacroContext, rpmCLIMacroContext,
                fileSystem, internalState@*/
@@ -329,7 +333,7 @@ int main(int argc, const char ** argv, char ** envp)
 #endif
     setprogname(argv[0]);      /* Retrofit glibc __progname */
 
-#if !defined(__GLIBC__)
+#if !defined(__GLIBC__) && !defined(__LCLINT__)
     environ = envp;
 #endif  
 
index b51f2f2..45a6c15 100644 (file)
--- a/system.h
+++ b/system.h
@@ -28,7 +28,7 @@ extern int chroot (const char *__path)
        /*@modifies errno, systemState @*/;
 /*@=superuser =declundef =incondefs @*/
 #endif
-#if !defined(__GLIBC__)
+#if !defined(__GLIBC__) && !defined(__LCLINT__)
 extern char ** environ;
 #endif
 #endif
index 62b6e43..c1aa04f 100644 (file)
@@ -4,8 +4,8 @@
 #include <rpmmacro.h>
 #include <rpmurl.h>
 
-#define        _NEED_TEITERATOR        1
-#include "depends.h"
+#include "rpmte.h"
+#include "rpmts.h"
 
 #include "manifest.h"
 #include "misc.h"
index 9c92ec4..ad1c686 100644 (file)
@@ -7,7 +7,8 @@
 #include <rpmurl.h>
 #include <rpmpgp.h>
 
-#include "depends.h"
+#include "rpmds.h"
+#include "rpmts.h"
 #include "misc.h"      /* XXX myGlobPatternP */
 
 #include "debug.h"
index 1bc5ecf..b7eb700 100644 (file)
@@ -1,4 +1,4 @@
-/*@-declundef -fcnuse -typeuse @*/
+/*@-declundef -fcnuse -noparams -typeuse @*/
 /* zlib.h -- interface of the 'zlib' general purpose compression library
   version 1.1.4, March 11th, 2002
 
@@ -892,4 +892,4 @@ ZEXTERN const uLongf * ZEXPORT get_crc_table    OF((void));
 #endif
 
 #endif /* _ZLIB_H */
-/*@=declundef =fcnuse =typeuse @*/
+/*@=declundef =fcnuse =noparams =typeuse @*/