- verify MD5 sums of payload files when unpacking archive.
authorjbj <devnull@localhost>
Tue, 24 Oct 2000 13:46:51 +0000 (13:46 +0000)
committerjbj <devnull@localhost>
Tue, 24 Oct 2000 13:46:51 +0000 (13:46 +0000)
CVS patchset: 4225
CVS date: 2000/10/24 13:46:51

42 files changed:
CHANGES
Doxyfile.in
lib/cpio.c
lib/cpio.h
lib/depends.h
lib/install.c
lib/md5.c
lib/md5.h
lib/md5sum.c
po/cs.po
po/da.po
po/de.po
po/es.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
rpmio/Makefile.am
rpmio/md5.c [new file with mode: 0644]
rpmio/rpmio.c
rpmio/rpmio_internal.h

diff --git a/CHANGES b/CHANGES
index f439278..ce83349 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -15,6 +15,7 @@
        - detect (still need to test) rdonly linux file systems.
        - check available inodes as well as blocks on mounted file systems.
        - pass rpmTransactionSet, not elements, to installBinaryPackage et al.
+       - verify MD5 sums of payload files when unpacking archive.
 
 3.0.6 -> 4.0
        - use DIRNAMES/BASENAMES/DIRINDICES not FILENAMES in packages and db.
index 045c96e..e8e3386 100644 (file)
@@ -323,6 +323,7 @@ INPUT                  = \
        ./lib/uninstall.c \
        ./lib/verify.c \
        ./rpmio/macro.c \
+       ./rpmio/md5.c \
        ./rpmio/rpmlog.c \
        ./rpmio/rpmerr.h \
        ./rpmio/rpmio.c \
index a177689..2f36e9a 100644 (file)
@@ -78,7 +78,13 @@ static void prtli(const char *msg, struct hardLink * li)
 }
 #endif
 
-/** */
+/**
+ * Read data from payload.
+ * @param cfd          payload file handle
+ * @retval vbuf                data from read
+ * @param amount       no. bytes to read
+ * @return             no. bytes read
+ */
 static inline off_t saferead(FD_t cfd, /*@out@*/void * vbuf, size_t amount)
        /*@modifies cfd, *vbuf @*/
 {
@@ -100,7 +106,13 @@ static inline off_t saferead(FD_t cfd, /*@out@*/void * vbuf, size_t amount)
     return rc;
 }
 
-/** */
+/**
+ * Read data from payload and update number of bytes read.
+ * @param cfd          payload file handle
+ * @retval buf         data from read
+ * @param size         no. bytes to read
+ * @return             no. bytes read
+ */
 static inline off_t ourread(FD_t cfd, /*@out@*/void * buf, size_t size)
        /*@modifies cfd, *buf @*/
 {
@@ -110,7 +122,11 @@ static inline off_t ourread(FD_t cfd, /*@out@*/void * buf, size_t size)
     return i;
 }
 
-/** */
+/**
+ * Align input payload handle, skipping input bytes.
+ * @param cfd          payload file handle
+ * @param modulo       data alignment
+ */
 static inline void padinfd(FD_t cfd, int modulo)
        /*@modifies cfd @*/
 {
@@ -121,7 +137,13 @@ static inline void padinfd(FD_t cfd, int modulo)
     (void)ourread(cfd, buf, amount);
 }
 
-/** */
+/**
+ * Write data to payload.
+ * @param cfd          payload file handle
+ * @param vbuf         data to write
+ * @param amount       no. bytes to write
+ * @return             no. bytes written
+ */
 static inline off_t safewrite(FD_t cfd, const void * vbuf, size_t amount)
        /*@modifies cfd @*/
 {
@@ -144,7 +166,12 @@ static inline off_t safewrite(FD_t cfd, const void * vbuf, size_t amount)
     return rc;
 }
 
-/** */
+/**
+ * Align output payload handle, padding with zeroes.
+ * @param cfd          payload file handle
+ * @param modulo       data alignment
+ * @return             0 on success, CPIOERR_WRITE_FAILED
+ */
 static inline int padoutfd(FD_t cfd, size_t * where, int modulo)
        /*@modifies cfd, *where @*/
 {
@@ -159,7 +186,14 @@ static inline int padoutfd(FD_t cfd, size_t * where, int modulo)
     return 0;
 }
 
-/** */
+/**
+ * Convert string to unsigned integer (with buffer size check).
+ * @param              input string
+ * @retval             address of 1st character not processed
+ * @param base         numerical conversion base
+ * @param num          max no. of bytes to read
+ * @return             converted integer
+ */
 static int strntoul(const char *str, /*@out@*/char **endptr, int base, int num)
        /*@modifies *endptr @*/
 {
@@ -176,7 +210,7 @@ static int strntoul(const char *str, /*@out@*/char **endptr, int base, int num)
     else
        *endptr = ((char *)str) + strlen(str);
 
-    return strtoul(buf, endptr, base);
+    return ret;
 }
 
 #define GET_NUM_FIELD(phys, log) \
@@ -186,7 +220,12 @@ static int strntoul(const char *str, /*@out@*/char **endptr, int base, int num)
        sprintf(space, "%8.8lx", (unsigned long) (val)); \
        memcpy(phys, space, 8);
 
-/** */
+/**
+ * Process next cpio heasder.
+ * @param cfd          payload file handle
+ * @retval hdr         file name and stat info
+ * @return             0 on success
+ */
 static int getNextHeader(FD_t cfd, struct cpioHeader * hdr)
        /*@modifies cfd, hdr->path, hdr->sb  @*/
 {
@@ -250,7 +289,11 @@ int cpioFileMapCmp(const void * a, const void * b)
 }
 
 /* This could trash files in the path! I'm not sure that's a good thing */
-/** */
+/**
+ * @param path         directory path
+ * @param perms                directory permissions
+ * @return             0 on success
+ */
 static int createDirectory(const char * path, mode_t perms)
        /*@modifies fileSystem @*/
 {
@@ -288,7 +331,11 @@ static int createDirectory(const char * path, mode_t perms)
     return 0;
 }
 
-/** */
+/**
+ * Set owner, group, and modify/access times.
+ * @param hdr          file name and stat info
+ * @return             0 on success
+ */
 static int setInfo(struct cpioHeader * hdr)
        /*@modifies fileSystem @*/
 {
@@ -316,7 +363,11 @@ static int setInfo(struct cpioHeader * hdr)
     return rc;
 }
 
-/** */
+/**
+ * Create directories in file path (like "mkdir -p").
+ * @param filename     file path
+ * @return             0 on success
+ */
 static int inline checkDirectory(const char * filename)        /*@*/
 {
     /*@only@*/ static char * lastDir = NULL;   /* XXX memory leak */
@@ -362,9 +413,17 @@ static int inline checkDirectory(const char * filename)    /*@*/
     return rc;
 }
 
-/** */
+/**
+ * Create file from payload stream.
+ * @param cfd          payload file handle
+ * @param hdr          file name and stat info
+ * @param filemd5      file md5 sum
+ * @param cb           callback function
+ * @param cbData       callback private data
+ * @return             0 on success
+ */
 static int expandRegular(FD_t cfd, const struct cpioHeader * hdr,
-                        cpioCallback cb, void * cbData)
+                        const char * filemd5, cpioCallback cb, void * cbData)
                /*@modifies fileSystem, cfd @*/
 {
     FD_t ofd;
@@ -399,6 +458,9 @@ static int expandRegular(FD_t cfd, const struct cpioHeader * hdr,
     if (ofd == NULL || Ferror(ofd))
        return CPIOERR_OPEN_FAILED;
 
+    if (filemd5)
+       fdInitMD5(ofd);
+
     cbInfo.file = hdr->path;
     cbInfo.fileSize = st->st_size;
 
@@ -424,12 +486,30 @@ static int expandRegular(FD_t cfd, const struct cpioHeader * hdr,
        }
     }
 
+    if (filemd5) {
+       const char * md5sum;
+
+       Fflush(ofd);
+       fdFiniMD5(ofd, (void **)&md5sum, NULL, 1);
+
+       if (strcmp(md5sum, filemd5))
+           rc = CPIOERR_MD5SUM_MISMATCH;
+
+       if (md5sum)
+           xfree(md5sum);
+    }
+
     Fclose(ofd);
 
     return rc;
 }
 
-/** */
+/**
+ * Create symlink from payload stream.
+ * @param cfd          payload file handle
+ * @param hdr          file name and stat info
+ * @return             0 on success
+ */
 static int expandSymlink(FD_t cfd, const struct cpioHeader * hdr)
                /*@modifies fileSystem, cfd @*/
 {
@@ -465,7 +545,12 @@ static int expandSymlink(FD_t cfd, const struct cpioHeader * hdr)
     return 0;
 }
 
-/** */
+/**
+ * Create fifo from payload stream.
+ * @param cfd          payload file handle
+ * @param hdr          file name and stat info
+ * @return             0 on success
+ */
 static int expandFifo( /*@unused@*/ FD_t cfd, const struct cpioHeader * hdr)
                /*@modifies fileSystem @*/
 {
@@ -484,7 +569,12 @@ static int expandFifo( /*@unused@*/ FD_t cfd, const struct cpioHeader * hdr)
     return 0;
 }
 
-/** */
+/**
+ * Create fifo from payload stream.
+ * @param cfd          payload file handle
+ * @param hdr          file name and stat info
+ * @return             0 on success
+ */
 static int expandDevice( /*@unused@*/ FD_t cfd, const struct cpioHeader * hdr)
                /*@modifies fileSystem @*/
 {
@@ -505,7 +595,12 @@ static int expandDevice( /*@unused@*/ FD_t cfd, const struct cpioHeader * hdr)
     return 0;
 }
 
-/** */
+/**
+ * Create and initialize set of hard links.
+ * @param st           link stat info
+ * @param hltype       type of hard link set to create
+ * @return             pointer to set of hard links
+ */
 static /*@only@*/ struct hardLink * newHardLink(const struct stat * st,
                                enum hardLinkType hltype)       /*@*/
 {
@@ -537,7 +632,10 @@ static /*@only@*/ struct hardLink * newHardLink(const struct stat * st,
     return li;
 }
 
-/** */
+/**
+ * Destroy set of hard links.
+ * @param li           set of hard links
+ */
 static void freeHardLink( /*@only@*/ struct hardLink * li)
 {
 
@@ -558,7 +656,12 @@ static void freeHardLink( /*@only@*/ struct hardLink * li)
     free(li);
 }
 
-/** */
+/**
+ * Create hard links to existing file.
+ * @param li           set of hard links
+ * @retval failedFile  on error, file name that failed
+ * @return             0 on success
+ */
 static int createLinks(struct hardLink * li, /*@out@*/ const char ** failedFile)
        /*@modifies fileSystem, *failedFile, li->files, li->linksLeft @*/
 {
@@ -591,7 +694,12 @@ static int createLinks(struct hardLink * li, /*@out@*/ const char ** failedFile)
     return 0;
 }
 
-/** */
+/**
+ * Skip amount bytes on input payload stream.
+ * @param cfd          payload file handle
+ * @param amount       no. bytes to skip
+ * @return             0 on success
+ */
 static int eatBytes(FD_t cfd, int amount)
        /*@modifies cfd @*/
 {
@@ -608,6 +716,7 @@ static int eatBytes(FD_t cfd, int amount)
     return 0;
 }
 
+/** @todo Verify payload MD5 sum. */
 int cpioInstallArchive(FD_t cfd, const struct cpioFileMapping * mappings,
                       int numMappings, cpioCallback cb, void * cbData,
                       const char ** failedFile)
@@ -620,6 +729,12 @@ int cpioInstallArchive(FD_t cfd, const struct cpioFileMapping * mappings,
     struct hardLink * li = NULL;
     int rc = 0;
 
+#ifdef NOTYET
+    char * md5sum = NULL;
+
+    fdInitMD5(cfd);
+#endif
+
     fdSetCpioPos(cfd, 0);
     if (failedFile)
        *failedFile = NULL;
@@ -702,7 +817,7 @@ int cpioInstallArchive(FD_t cfd, const struct cpioFileMapping * mappings,
 
                if (!rc) {
                    if (S_ISREG(st->st_mode))
-                       rc = expandRegular(cfd, hdr, cb, cbData);
+                       rc = expandRegular(cfd, hdr, map->md5sum, cb, cbData);
                    else if (S_ISDIR(st->st_mode))
                        rc = createDirectory(hdr->path, 000);
                    else if (S_ISLNK(st->st_mode))
@@ -770,10 +885,25 @@ int cpioInstallArchive(FD_t cfd, const struct cpioFileMapping * mappings,
        freeHardLink(li);
     }
 
+#ifdef NOTYET
+    fdFiniMD5(cfd, (void **)&md5sum, NULL, 1);
+
+    if (md5sum)
+       free(md5sum);
+#endif
+
     return rc;
 }
 
-/** */
+/**
+ * Write next item to payload stream.
+ * @param cfd          payload file handle
+ * @param st           stat info for item
+ * @param map          mapping name and flags for item
+ * @retval sizep       address of no. bytes written
+ * @param writeData    should data be written?
+ * @return             0 on success
+ */
 static int writeFile(FD_t cfd, const struct stat * st,
        const struct cpioFileMapping * map, /*@out@*/ size_t * sizep,
        int writeData)
@@ -917,7 +1047,17 @@ static int writeFile(FD_t cfd, const struct stat * st,
     return 0;
 }
 
-/** */
+/**
+ * Write set of linked files to payload stream.
+ * @param cfd          payload file handle
+ * @param hlink                set of linked files
+ * @param mappings     mapping name and flags for linked files
+ * @param cb           callback function
+ * @param cbData       callback private data
+ * @retval sizep       address of no. bytes written
+ * @retval failedFile  on error, file name that failed
+ * @return             0 on success
+ */
 static int writeLinkedFile(FD_t cfd, const struct hardLink * hlink,
                           const struct cpioFileMapping * mappings,
                           cpioCallback cb, void * cbData,
@@ -1121,6 +1261,7 @@ const char * cpioStrerror(int rc)
     case CPIOERR_HDR_SIZE:     s = _("Header size too big");   break;
     case CPIOERR_UNKNOWN_FILETYPE: s = _("Unknown file type"); break;
     case CPIOERR_MISSING_HARDLINK: s = _("Missing hard link"); break;
+    case CPIOERR_MD5SUM_MISMATCH: s = _("MD5 sum mismatch");   break;
     case CPIOERR_INTERNAL:     s = _("Internal error");        break;
     }
 
index 02cafa5..e7df1a1 100644 (file)
@@ -47,7 +47,8 @@ enum cpioErrorReturns {
        CPIOERR_HDR_SIZE        = (20                   ),
        CPIOERR_UNKNOWN_FILETYPE = (21                  ),
        CPIOERR_MISSING_HARDLINK = (22                  ),
-       CPIOERR_INTERNAL        = (23                   )
+       CPIOERR_MD5SUM_MISMATCH = (23                   ),
+       CPIOERR_INTERNAL        = (24                   )
 };
 
 /** \ingroup payload
@@ -67,6 +68,7 @@ enum cpioMapFlags {
 struct cpioFileMapping {
 /*@dependent@*/ const char * archivePath; /*!< Path to store in cpio archive. */
 /*@dependent@*/ const char * fsPath;      /*!< Location of payload file. */
+/*@dependent@*/ const char * md5sum;      /*!< File MD5 sum (NULL disables). */
     mode_t finalMode;          /*!< Mode of payload file (from header). */
     uid_t finalUid;            /*!< Uid of payload file (from header). */
     gid_t finalGid;            /*!< Gid of payload file (from header). */
index c309467..a45cd8f 100644 (file)
@@ -122,7 +122,7 @@ struct transactionElement {
 struct rpmTransactionSet_s {
     rpmtransFlags transFlags;          /*!< Bit(s) to control operation. */
     rpmCallbackFunction notify;                /*!< Callback function. */
-    rpmCallbackData notifyData;                /*!< Callback data. */
+    rpmCallbackData notifyData;                /*!< Callback private data. */
     rpmProblemSet probs;               /*!< Current problems in transaction. */
     rpmprobFilterFlags ignoreSet;      /*!< Bits to filter current problems. */
 /*@owned@*/ /*@null@*/ rpmdb rpmdb;    /*!< Database handle. */
index 69081c3..6cc4b04 100644 (file)
@@ -26,15 +26,20 @@ struct callbackInfo {
     const void * pkgKey;
 };
 
+/**
+ * Keeps track of memory allocated while accessing header tags.
+ */
 struct fileMemory {
 /*@owned@*/ const char ** names;
 /*@owned@*/ const char ** cpioNames;
+/*@owned@*/ const char ** md5sums;
 /*@owned@*/ struct fileInfo * files;
 };
 
 struct fileInfo {
 /*@dependent@*/ const char * cpioPath;
 /*@dependent@*/ const char * relativePath;     /* relative to root */
+/*@dependent@*/ const char * md5sum;
     uid_t uid;
     gid_t gid;
     uint_32 flags;
@@ -94,6 +99,8 @@ static int rpmInstallLoadMacros(Header h)
 }
 
 /**
+ * Create memory used to access header.
+ * @return             pointer to memory
  */
 static /*@only@*/ struct fileMemory *newFileMemory(void)
 {
@@ -101,23 +108,33 @@ static /*@only@*/ struct fileMemory *newFileMemory(void)
     fileMem->files = NULL;
     fileMem->names = NULL;
     fileMem->cpioNames = NULL;
+    fileMem->md5sums = NULL;
     return fileMem;
 }
 
 /**
+ * Destroy memory used to access header.
+ * @param fileMem      pointer to memory
  */
 static void freeFileMemory( /*@only@*/ struct fileMemory *fileMem)
 {
     if (fileMem->files) free(fileMem->files);
     if (fileMem->names) free(fileMem->names);
     if (fileMem->cpioNames) free(fileMem->cpioNames);
+    if (fileMem->md5sums) free(fileMem->md5sums);
     free(fileMem);
 }
 
 /* files should not be preallocated */
 /**
+ * Build file information array.
  * @param h            header
- * @retval             0 always
+ * @retval memPtr      address of allocated memory from header access
+ * @retval fileCountPtr        address of install file count
+ * @retval files       address of install file information
+ * @param stripPrefixLength no. bytes of file prefix to skip
+ * @param actions      array of file dispositions
+ * @return             0 always
  */
 static int assembleFileList(Header h, /*@out@*/ struct fileMemory ** memPtr,
         /*@out@*/ int * fileCountPtr, /*@out@*/ struct fileInfo ** filesPtr,
@@ -148,6 +165,7 @@ static int assembleFileList(Header h, /*@out@*/ struct fileMemory ** memPtr,
 
     files = *filesPtr = mem->files = xcalloc(fileCount, sizeof(*mem->files));
 
+    headerGetEntry(h, RPMTAG_FILEMD5S, NULL, (void **) &mem->md5sums, NULL);
     headerGetEntry(h, RPMTAG_FILEFLAGS, NULL, (void **) &fileFlags, NULL);
     headerGetEntry(h, RPMTAG_FILEMODES, NULL, (void **) &fileModes, NULL);
     headerGetEntry(h, RPMTAG_FILESIZES, NULL, (void **) &fileSizes, NULL);
@@ -162,6 +180,7 @@ static int assembleFileList(Header h, /*@out@*/ struct fileMemory ** memPtr,
 
        file->relativePath = mem->names[i];
        file->cpioPath = mem->cpioNames[i] + stripPrefixLength;
+       file->md5sum = mem->md5sums[i];
        file->mode = fileModes[i];
        file->size = fileSizes[i];
        file->flags = fileFlags[i];
@@ -174,7 +193,10 @@ static int assembleFileList(Header h, /*@out@*/ struct fileMemory ** memPtr,
 }
 
 /**
+ * Localize user/group id's.
  * @param h            header
+ * @param files                install file information
+ * @param fileCount    install file count
  */
 static void setFileOwners(Header h, struct fileInfo * files, int fileCount)
 {
@@ -263,7 +285,11 @@ static void trimChangelog(Header h)
 }
 
 /**
- * @param h            header
+ * Copy file data from h to newH.
+ * @param h            header from
+ * @param newH         header to
+ * @param actions      array of file dispositions
+ * @return             0 always
  */
 static int mergeFiles(Header h, Header newH, enum fileActions * actions)
 {
@@ -437,8 +463,13 @@ static int mergeFiles(Header h, Header newH, enum fileActions * actions)
     return 0;
 }
 
-/** */
-static int markReplacedFiles(rpmdb db, const struct sharedFileInfo * replList)
+/**
+ * Mark files in database shared with current package as "replaced".
+ * @param db           rpm database
+ * @param replist      shared file list
+ * @return             0 always
+ */
+static int markReplacedFiles(rpmdb rpmdb, const struct sharedFileInfo * replList)
 {
     const struct sharedFileInfo * fileInfo;
     rpmdbMatchIterator mi;
@@ -466,7 +497,7 @@ static int markReplacedFiles(rpmdb db, const struct sharedFileInfo * replList)
        offsets[num++] = fileInfo->otherPkg;
     }
 
-    mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, NULL, 0);
+    mi = rpmdbInitIterator(rpmdb, RPMDBI_PACKAGES, NULL, 0);
     rpmdbAppendIterator(mi, offsets, num);
 
     fileInfo = replList;
@@ -501,7 +532,8 @@ static int markReplacedFiles(rpmdb db, const struct sharedFileInfo * replList)
     return 0;
 }
 
-/** */
+/**
+ */
 static void callback(struct cpioCallbackInfo * cpioInfo, void * data)
 {
     struct callbackInfo * ourInfo = data;
@@ -520,9 +552,18 @@ static void callback(struct cpioCallbackInfo * cpioInfo, void * data)
     }
 }
 
-/* NULL files means install all files */
 /**
+ * Setup payload map and install payload archive.
+ * @param fd           file handle of package (positioned at payload)
+ * @param files                files to install (NULL means "all files")
+ * @param fileCount    no. files to install
+ * @param notify       callback function
+ * @param notifyData   callback private data
+ * @param pkgKey       package private data (e.g. file name)
  * @param h            header
+ * @retval specFile    address of spec file name
+ * @param archiveSize  @todo Document.
+ * @return             0 on success
  */
 static int installArchive(FD_t fd, struct fileInfo * files, int fileCount,
                        rpmCallbackFunction notify, rpmCallbackData notifyData,
@@ -567,6 +608,7 @@ static int installArchive(FD_t fd, struct fileInfo * files, int fileCount,
 #else
            urltype = urlPath(files[i].relativePath, &map[mappedFiles].fsPath);
 #endif
+           map[mappedFiles].md5sum = files[i].md5sum;
            map[mappedFiles].finalMode = files[i].mode;
            map[mappedFiles].finalUid = files[i].uid;
            map[mappedFiles].finalGid = files[i].gid;
@@ -633,6 +675,11 @@ static int installArchive(FD_t fd, struct fileInfo * files, int fileCount,
 
 /**
  * @param h            header
+ * @param rootDir      path to top of install tree
+ * @param fd           file handle of package (positioned at payload)
+ * @retval specFilePtr address of spec file name
+ * @param notify       callback function
+ * @param notifyData   callback private data
  * @return             0 on success, 1 on bad magic, 2 on error
  */
 static int installSources(Header h, const char * rootDir, FD_t fd,
index 92f1ff2..6edb497 100644 (file)
--- a/lib/md5.c
+++ b/lib/md5.c
@@ -14,6 +14,8 @@
  * MD5Context structure, pass it to rpmMD5Init, call rpmMD5Update as
  * needed on buffers full of bytes, and then call rpmMD5Final, which
  * will fill a supplied 16-byte array with the digest.
+ *
+ * @todo Eliminate, use rpmio version instead.
  */
 
 #include "system.h"
index 8ef18ea..8415c77 100644 (file)
--- a/lib/md5.h
+++ b/lib/md5.h
@@ -2,13 +2,16 @@
 #define MD5_H
 
 /** \file lib/md5.h
- *
+ * @todo Eliminate, use rpmio version instead.
  */
 
 #include <sys/types.h>
 
 typedef unsigned int uint32;
 
+/**
+ * MD5 private data.
+ */
 struct MD5Context {
        uint32 buf[4];
        uint32 bits[2];
@@ -25,18 +28,74 @@ typedef /*@abstract@*/ struct MD5Context MD5_CTX;
 extern "C" {
 #endif
 
+/**
+ * Initialize MD5 hash.
+ * Set bit count to 0 and buffer to mysterious initialization constants.
+ * @param context      MD5 private data
+ * @param brokenEndian calculate broken MD5 sum?
+ */
 void rpmMD5Init( /*@out@*/ struct MD5Context *context, int brokenEndian);
+
+/**
+ * Update context to reflect the concatenation of another buffer full
+ * of bytes.
+ * @param context      MD5 private data
+ * @param data         next data buffer
+ * @param len          no. bytes of data
+ */
 void rpmMD5Update(struct MD5Context *context, unsigned char const *buf,
               unsigned len);
+/**
+ * Return MD5 digest, and reset context.
+ * @retval             MD5 digest
+ * @param context      MD5 private data
+ */
 void rpmMD5Final(unsigned char digest[16], struct MD5Context *context);
+
+/**
+ * The core of the MD5 algorithm.
+ * This alters an existing MD5 hash to reflect the addition of 16 longwords
+ * of new data.
+ * @param buf          current MD5 variables
+ * @param in           next block of data to add
+ */
 void rpmMD5Transform(uint32 buf[4], uint32 const in[16]);
 
+/**
+ * Return MD5 sum of file as ASCII string.
+ * @param fn           file name
+ * @retval digest      MD5 digest
+ * @return             0 on success, 1 on error
+ */
 int mdfile(const char *fn, unsigned char *digest);
+
+/**
+ * Return MD5 sum of file as binary data.
+ * @param fn           file name
+ * @retval bindigest   MD5 digest
+ * @return             0 on success, 1 on error
+ */
 int mdbinfile(const char *fn, unsigned char *bindigest);
 
 /* These assume a little endian machine and return incorrect results!
    They are here for compatibility with old (broken) versions of RPM */
+
+/**
+ * Return (broken!) MD5 sum of file as ASCII string.
+ * @deprecated Here for compatibility with old (broken) versions of RPM.
+ * @param fn           file name
+ * @retval digest      MD5 digest
+ * @return             0 on success, 1 on error
+ */
 int mdfileBroken(const char *fn, unsigned char *digest);
+
+/**
+ * Return (broken!) MD5 sum of file as binary data.
+ * @deprecated Here for compatibility with old (broken) versions of RPM.
+ * @param fn           file name
+ * @retval bindigest   MD5 digest
+ * @return             0 on success, 1 on error
+ */
 int mdbinfileBroken(const char *fn, unsigned char *bindigest);
 
 #ifdef __cplusplus
index ddddf96..692e26b 100644 (file)
 
 #include "md5.h"
 
+/**
+ * Calculate MD5 sum for file.
+ * @param fn           file name
+ * @retval digest      address of md5sum
+ * @param asAscii      return md5sum as ascii string?
+ * @param brokenEndian calculate broken MD5 sum?
+ * @return             0 on success, 1 on error
+ */
 static int domd5(const char * fn, unsigned char * digest, int asAscii,
                 int brokenEndian) {
     unsigned char buf[1024];
index 420dec1..069b2dc 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-08-08 22:37+0100\n"
 "Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -521,19 +521,19 @@ msgstr ""
 "ovìøit instalaci balíèku pou¾itím stejných voleb pro specifikaci balíèku, "
 "jako pro -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "nekontrolovat md5 souèty souborù"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "nekontrolovat atributy souborù"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "uvést pøíznaky, které lze pou¾ít v dotazovacím formátu"
 
@@ -545,7 +545,7 @@ msgstr "    --install <bal
 msgid "    -i <packagefile>      "
 msgstr "    -i <balíèek>     "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "nainstalovat balíèek"
 
@@ -561,11 +561,11 @@ msgstr "p
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "pøemístit soubory ze <staré_cesty> do <nové_cesty>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr "pøemístìní souborù v nepøemístitelném balíèku"
 
@@ -573,48 +573,48 @@ msgstr "p
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <adr>      "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "neinstalovat dokumentaci"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "zkratka pro --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "nainstalovat v¹echny soubory i konfigurace, které by se jinak mohly vynechat"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "nekontrolovat architekturu balíèku"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "nekontrolovat volné místo na disku pøed instalací"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "nekontrolovat operaèní systém balíèku"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "nainstalovat dokumentaci"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "upravit databázi, ale neupravovat systém souborovù"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
 
@@ -622,23 +622,23 @@ msgstr "pro vy
 msgid "don't execute any installation scripts"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "bìhem instalace balíèku zobrazit procenta"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
 
@@ -650,11 +650,11 @@ msgstr "    --upgrade <bal
 msgid "    -U <packagefile>      "
 msgstr "    -U <balíèek>          "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "aktualizovat balíèek (stejné volby jako --install, plus)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -666,11 +666,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <balíèek>"
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "smazat (deinstalovat) balíèek"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -678,7 +678,7 @@ msgstr ""
 "odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
 "specifikuje-li <balíèek> více balíèkù)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
@@ -690,52 +690,52 @@ msgstr "    -b<etapa> <spec>      "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etapa> <tarball> "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "sestavit balíèek, kde <etapa> je jedna z:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "pøíprava (rozbalí zdroje a aplikuje záplaty)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrola seznamù (provede zbì¾né kontroly %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilace (pøíprava a kompilace)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "instalace (pøíprava, kompilace a instalace)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binární balíèek (pøíprava, kompilace, instalace, zabalení)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src balíèek (pøíprava, kompilace, instalace, zabalení)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "pøeskoèit pøímo na urèenou etapu (pouze pro c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "po dokonèení odstranit sestavovací strom"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr "po dokonèení odstranit zdrojové kódy"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr "po dokonèení odstranit spec soubor"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "generovat PGP/GPG podpis"
 
@@ -743,7 +743,7 @@ msgstr "generovat PGP/GPG podpis"
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <adr>   "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "pou¾ít <adr> jako koøen pro sestavení"
 
@@ -751,11 +751,11 @@ msgstr "pou
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "sestavit balíèek pro cíl platforma1...platformaN."
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "nespou¹tìt ¾ádné etapy"
 
@@ -771,7 +771,7 @@ msgstr "nastavit 
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <zdroj_balíèek> "
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -783,7 +783,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <zdroj_balíèek> "
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "jako --rebuild, ale nesestavovat balíèky"
 
@@ -791,7 +791,7 @@ msgstr "jako --rebuild, ale nesestavovat bal
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <balíèek>+   "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
@@ -799,7 +799,7 @@ msgstr "podepsat bal
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <balíèek>+  "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "pøidat do balíèku podpis"
 
@@ -811,19 +811,19 @@ msgstr "    --checksig <bal
 msgid "    -K <pkg>+             "
 msgstr "    --K <balíèek>+        "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "ovìøit podpis v balíèku"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "vynechat pøípadné PGP podpisy"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "vynechat pøípadné GPG podpisy"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "vynechat pøípadné MD5 souèty"
 
@@ -835,7 +835,7 @@ msgstr "zajistit, aby existovala platn
 msgid "rebuild database from existing database"
 msgstr "znovu vytvoøit databázi z existující databáze"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -843,7 +843,7 @@ msgstr ""
 "nastavit oprávnìní k souborùm podle údajù v databázi balíèkù pomocí stejných "
 "voleb pro specifikaci balíèku, jako pro -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -852,37 +852,37 @@ msgstr ""
 "pomocí stejných voleb pro specifikaci balíèku, jako pro -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "specifikovat lze jen jeden hlavní re¾im"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u a --uninstall jsou zastaralé a ji¾ je nelze pou¾ít.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Pou¾ijte volbu -e nebo --erase.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "pøemístìní musejí obsahovat ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "pøemístìní musejí mít za znakem = znak /"
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musí zaèínat znakem /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -890,108 +890,108 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "najednou lze provést jen jeden typ dotazu èi ovìøení"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr "neoèekávaný pøíznak pro dotaz"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr "neoèekávaný formát dotazu"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "neoèekávaný zdroj dotazu"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 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"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "soubory mohou být pøemístìny jen pøi instalaci balíèkù"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "pou¾ít lze jen jeden z parametrù --prefix nebo --relocate"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 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ù"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 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ù"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametry pro --prefix musejí zaèínat znakem /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 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ù"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "pou¾ít lze jen jeden z parametrù --excludedocs a --includedocs"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 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ù"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1007,7 +1007,7 @@ msgstr ""
 "--notriggers mù¾e být pou¾it jen pøi instalaci, odstraòování nebo kontrole "
 "balíèkù"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -1015,13 +1015,13 @@ msgstr ""
 "--nodeps mù¾e být pou¾it jen pøi sestavování, rekompilaci, instalaci, "
 "odstraòování a kontrole"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 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í"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1029,97 +1029,97 @@ msgstr ""
 "--root (-r) mù¾e být pou¾it jen pøi instalaci, odstraòování, dotazech nebo "
 "znovuvytvoøení databáze"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametry pro --root (-r) musejí zaèínat znakem /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage lze pou¾ít jen pøi aktualizacích"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp lze pou¾ít jen pøi kontrole podpisù"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg lze pou¾ít jen pøi kontrole podpisù"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 mù¾e být pou¾it jen pøi kontrole podpisù a ovìøování balíèkù"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr "¾ádné soubory k podepsání\n"
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "pøístup k souboru %s se nezdaøil\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "pgp nenalezeno: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr "Vlo¾te heslovou frázi: "
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Chybná heslová fráze\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Heslová fráze je v poøádku.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "©patná %%_signature spec v souboru maker.\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign mù¾e být pou¾it jen pøi sestavování balíèkù"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "spu¹tìní selhalo\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekávané parametry pro --querytags "
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "ke kontrole podpisu nezadány ¾ádné balíèky"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "k podepsání nezadány ¾ádné balíèky"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "nezadány ¾ádné balíèky pro odstranìní"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "k dotazu na v¹echny balíèky zadány parametry navíc"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "k dotazu nezadány ¾ádné parametry"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr "pro kontrolu v¹ech balíèkù zadány parametry navíc"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "pro kontrolu nezadány ¾ádné balíèky"
 
@@ -1431,125 +1431,130 @@ msgstr "vytisknout [de]instala
 msgid "show the trigger scriptlets contained in the package"
 msgstr "zobrazit spou¹tì (triggery) obsa¾ené v balíèku"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "nespou¹tìt ¾ádné etapy"
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr "   --install <balíèek>"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr "   -i <balíèek>           "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr "     --excludepath <cesta> "
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr "pøeskoèit soubory s úvodní cestou <cesta> "
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr "     --prefix <adr>       "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "     --relocate <stará_cesta>=<nová_cesta>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr "   --upgrade <balíèek>"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr "   -U <balíèek>           "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr "   --erase <balíèek>"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr "   -b<etapa> <spec>       "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr "   -t<etapa> <tarball>    "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr "pouze zdrojový balíèek"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr "     --buildroot <adr>    "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr "     --target=<platforma>+ "
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr "   --rebuild <zdroj_balíèek>"
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr "   --recompile <zdroj_balíèek>"
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr "   --resign <balíèek>+    "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr "   --addsign <balíèek>+   "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr "    --checksig <balíèek>+"
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr "   -K <balíèek>+         "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr "inicializovat databázi (není potøeba, zpìtná kompatibilita)"
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr "znovu vytvoøit databázi z existujících databázových hlavièek"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Pou¾ijte volbu -e nebo --erase.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr "----notriggers mù¾e být pou¾ito jen pøi instalaci nebo mazání balíèkù"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "ke znovusestavení nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "pro sestavení nezadány ¾ádné spec soubory"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "pro sestavení nezadány ¾ádné tar soubory"
 
@@ -2269,51 +2274,55 @@ msgstr "
 msgid "line %d: Bad %s number: %s\n"
 msgstr "øádek %d: ©patné èíslo %s: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Nemohu pøejmenovat %s na %s: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "Nemohu provést unlink %s: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba: 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "©patné magické èíslo"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "©patná nebo neèitelná hlavièka"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr "Neznámý typ souboru"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr "Chybìjící hardlink"
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr "Interní chyba"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr "selhal - "
 
@@ -2555,26 +2564,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(není èíslo)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() nevrátil velikost polo¾ky fugger: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "nemohu zjistit stav %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr "získávám seznam pøipojených systémù souborù\n"
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "nemohu otevøít %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "soubor %s je na neznámém zaøízení"
@@ -2584,7 +2593,7 @@ msgstr "soubor %s je na nezn
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "Poèet RPM_STRING_TYPE pro grabData() musí být 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
@@ -2655,108 +2664,108 @@ msgstr "na konci v
 msgid "(unknown type)"
 msgstr "(neznámý typ)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   soubor: %s akce: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s neexistuje - pou¾ita skupina root"
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "hodnova %%instchangelog v makro souboru má být èíslo, ale není"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozbalování archívu selhalo %s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "instaluji zdrojový balíèek\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nemohu vytvoøir adresáø pro zdrojové soubory: %s"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "nemohu zapsat do %s"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "zdrojové soubory v: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "nemohu vytvoøit adresáø pro spec soubory: %s"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec soubor v: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "zdrojový balíèek neobsahuje spec soubor"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "pøejmenovávám %s na %s\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "pøejmenování %s na %s selhalo: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balíèek: %s-%s-%s test souborù = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "ukonèuji instalaci, proto¾e je spu¹tìn --test\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "spou¹tím pøípadný pøedinstalaèní skript\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varování: %s vytvoøeno jako %s"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varování: %s ulo¾eno jako %s"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr "spou¹tím pøípadný postinstalaèní skript\n"
 
@@ -2994,11 +3003,16 @@ msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr "instalace balíèku %s-%s-%s potøebuje %ld%cb na systému souborù %s"
 
 #: lib/problems.c:151
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr "instalace balíèku %s-%s-%s potøebuje %ld%cb na systému souborù %s"
+
+#: lib/problems.c:158
 #, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr "v balíèku %s-%s-%s pøedtransakèní syscall(s): %s selhalo: %s"
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s-%s-%s"
@@ -3762,27 +3776,27 @@ msgstr "Mus
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "vynechávám soubor %s%s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "pøemís»uji %s do %s\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "pøemís»uji adresáø %s do %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
@@ -3802,180 +3816,180 @@ msgstr "rmdir %s selhalo: %s"
 msgid "removal of %s failed: %s"
 msgstr "odstranìní %s selhalo: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "odstraní se soubory test = %d\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "spou¹tím pøípadný postdeinstalaèní skript\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr "nekontrolovat soubory v balíèku"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "balíèek neobsahuje ani u¾ivatelská jména ani seznam id (nemìlo by se nikdy "
 "stát)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "balíèek neobsahuje ani jména skupin ani seznam id (nemìlo by se nikdy stát)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "chybí      %s\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "Úspìch"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr "Chybná odezva FTP serveru"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr "IO chyba serveru"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "Timeout serveru"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr "Nelze pøevést jméno na IP adresu poèítaèe"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr "Nelze pøevést IP na jméno poèítaèe"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr "Pøipojení k serveru selhalo"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr "Selhalo navázání datového spojení se serverem"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "IO chyba pøi lokálním souboru"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Chyba pøi nastavení vzdáleného serveru do pasivního re¾imu"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Soubor nebyl na serveru nalezen"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "Probíhá pøeru¹ení"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "Neznámá nebo neoèekávaná chyba"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "pøihla¹ování na %s jako %s, heslo %s\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktivní %d prázdný %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(prázdný)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(prázdný)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s má neukonèené tìlo"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s má neplatné jméno (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s má neukonèené parametry"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s má prázdné tìlo"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "Expanze makra %%%s selhala"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s má neplatné jméno (%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nebylo pou¾ito pod úrovní %d"
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznámá volba: %c v %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "Hloubka rekurze(%d) je vìt¹í, ne¾ max(%d)"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Neukonèené %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr "Za %% následuje neparsovatelné makro"
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "makro %%%.*s nenalezeno, pøeskakuji"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "Cílový buffer pøetekl"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Soubor %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Soubor %s je men¹í, ne¾ %d bajtù"
@@ -4025,22 +4039,22 @@ msgstr "varov
 msgid "Password for %s@%s: "
 msgstr "Heslo pro %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "chyba: %sport musí být èíslo\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "url port musí být èíslo\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
index 15bf758..1b6af0b 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-03-07 05:17+01:00\n"
 "Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
 "Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@@ -517,19 +517,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -541,7 +541,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "installér pakke"
 
@@ -557,11 +557,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -569,47 +569,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <katalog>  "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "installér ikke dokumentation"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -617,23 +617,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -645,11 +645,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -659,17 +659,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <pakke>"
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "slet (afinstallér) pakke"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -681,52 +681,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilér (forbered og kompilér)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "installér (forbered, kompilér og installér)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -734,7 +734,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -742,11 +742,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -762,7 +762,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -772,7 +772,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -780,7 +780,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pakke>+     "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -788,7 +788,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pakke>+    "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "tilføj signatur til pakke"
 
@@ -800,19 +800,19 @@ msgstr "    --checksig <pakke>+"
 msgid "    -K <pkg>+             "
 msgstr "    -K <pakke>+           "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "verificér pakke signatur"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -824,50 +824,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -875,105 +875,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -985,115 +985,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage må kun bruges under opgraderinger"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp må kun bruges under signaturkontrollering"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg må kun bruges under signaturkontrollering"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "pgp ikke fundet: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1402,124 +1402,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2237,51 +2241,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2517,26 +2525,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2546,7 +2554,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2617,108 +2625,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2957,10 +2965,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3698,27 +3711,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3738,177 +3751,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr "fjernelse af %s fejlede: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "Succés"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "Tidsudløb for tjener"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Fil ikke fundet på tjener"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktiv %d tom %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(tom)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(tom)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s har ugyldig navn (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3957,22 +3970,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "Adgangskode for %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 37db935..924aede 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -593,19 +593,19 @@ msgid ""
 msgstr ""
 "Ein Paket mit denselben Paketspezifikations-Optionen wie bei -q überprüfen"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "md5-Prüfsumme der Datei nicht überprüfen"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "Dateiattribute nicht überprüfen"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "Tags auflisten, die im Anfrageformat benutzt werden können"
 
@@ -619,7 +619,7 @@ msgstr "Paket installieren"
 msgid "    -i <packagefile>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "Paket installieren"
 
@@ -637,11 +637,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "Paket %s ist nicht installiert\n"
@@ -650,50 +650,50 @@ msgstr "Paket %s ist nicht installiert\n"
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "Dokumentation nicht installieren"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "Abkürzung für --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "alle Dateien installieren, auch die config-Dateien, die sonst übergangen "
 "würden"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "Dokumentation installieren"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
@@ -702,23 +702,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "Prozentangabe bei der Paketinstallation ausgeben"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
 
@@ -731,11 +731,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "Paket aktualisieren (dieselben Optionen wie --install, außerdem)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -747,11 +747,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "Paket löschen (deinstallieren)"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -759,7 +759,7 @@ msgstr ""
 "Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
 "ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
@@ -772,58 +772,58 @@ msgstr "    -b<STUFE> <SPEC>      "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "Paket erstellen, <STUFE> ist einer der Buchstaben:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "präparieren (Quellen entpacken und Patch-Dateien anwenden"
 
 # , c-format
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrollieren (oberflächliche Überprüfung der %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilieren (präparieren und kompilieren)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "installieren (präparieren, kompilieren, installieren)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 "Binärpaket erstellen (präparieren, kompilieren, installieren und paketieren)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "Binär- und Quellpaket erstellen (präparieren, kompilieren, installieren und "
 "Paketieren"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "Direkt zur angegeben Stufe springen (nur für c und i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "Erstellungsdateibaum nach Beendigung löschen"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP-Signatur generieren"
@@ -833,7 +833,7 @@ msgstr "PGP-Signatur generieren"
 msgid "      --buildroot <dir>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
 
@@ -841,11 +841,11 @@ msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "Keine Stufen ausführen"
 
@@ -863,7 +863,7 @@ msgstr "Die Zeit
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -875,7 +875,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "wie --rebuild aber kein Paket erstellen"
 
@@ -884,7 +884,7 @@ msgstr "wie --rebuild aber kein Paket erstellen"
 msgid "    --resign <pkg>+       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
@@ -893,7 +893,7 @@ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "Signatur einem Paket hinzufügen"
 
@@ -907,20 +907,20 @@ msgstr "    -b<STUFE> <SPEC>      "
 msgid "    -K <pkg>+             "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "Paketsignatur überprüfen"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "alle PGP-Signaturen überspringen"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "alle PGP-Signaturen überspringen"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "alle MD5-Signaturen überspringen"
 
@@ -933,7 +933,7 @@ msgid "rebuild database from existing database"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
 # Was ist gemeint?
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -942,7 +942,7 @@ msgstr ""
 "Paketspezifikationsoptionen wie bei -q benutzt würden"
 
 # Was ist gemeint?
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -951,38 +951,38 @@ msgstr ""
 "wenn dieselben Paketspezifikationsoptionen wie bei -q benutzt würden"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "Es darf nur ein Hauptmodus angegeben werden"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u und --uninstall sind veraltet und funktionieren nicht mehr.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Benutzen Sie stattdessen -e oder --erase\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "Verschiebungen müssen ein »=« beinhalten"
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "bei Verschiebungen muss ein »/« dem »=« folgen"
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -990,115 +990,115 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 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"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "nur die Installation und Aktualisierung darf erzwungen werden"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "Dateien können nur während der Paketinstallation verschoben werden"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "Argumente zu --prefix müssen mit einem / beginnen"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1114,7 +1114,7 @@ msgstr ""
 "--notriggers darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1123,7 +1123,7 @@ msgstr ""
 "--nodeps darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1131,7 +1131,7 @@ msgstr ""
 "--test darf nur während der Paketinstallation, -deinstallation und "
 "-erstellung angegeben werden"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1139,103 +1139,103 @@ msgstr ""
 "--root (-r) darf nur während der Paketinstallation, -deinstallation, "
 "-anfrage und Datenbankneuerstellungen angegeben werden"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage darf nur während Aktualisierungen benutzt werden"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp darf nur während der Signatur- und Paketüberprüfung angegeben werden"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Das Passwort ist richtig.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign darf nur während der Paketerstellung benutzt werden"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "Unerwartete Argumente zu --querytags "
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "Es wurden keine Pakete für die Signatur angeben"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
 
@@ -1571,134 +1571,139 @@ msgstr "Die diversen (De-)Installations-Skripte ausgeben"
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "Keine Stufen ausführen"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "Paket installieren"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "Paket installieren"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "Paket installieren"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "Paket hat keinen Namen"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Benutzen Sie stattdessen -e oder --erase\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 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:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
@@ -1706,15 +1711,15 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
 
@@ -2471,53 +2476,57 @@ msgid "line %d: Bad %s number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
 # , c-format
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "Fehler: "
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(unbekannter Typ)"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Internal error"
 msgstr "Fataler Fehler: "
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
@@ -2756,28 +2765,28 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(keine Zahl)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
 # , c-format
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
 # , c-format
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2787,7 +2796,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2862,112 +2871,112 @@ msgid "(unknown type)"
 msgstr "(unbekannter Typ)"
 
 # , c-format
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "Paket installieren"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/install.c:717
+#: lib/install.c:765
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/install.c:940
+#: lib/install.c:980
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3240,13 +3249,18 @@ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-# FIXME shared, besser: "mit anderen geteilte ..."
 #: lib/problems.c:151
+#, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+# FIXME shared, besser: "mit anderen geteilte ..."
+#: lib/problems.c:158
 #, fuzzy, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -4017,27 +4031,27 @@ msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
 # , c-format
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -4057,188 +4071,188 @@ msgstr "Entfernen von %s fehlgeschlagen: %s"
 msgid "removal of %s failed: %s"
 msgstr "öffnen von %s fehlgeschlagen: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "Paket installieren"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 #, fuzzy
 msgid "Bad server response"
 msgstr "Nicht passende Antwort des FTP-Servers"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 #, fuzzy
 msgid "Server IO error"
 msgstr "FTP IO-Fehler"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 #, fuzzy
 msgid "Server timeout"
 msgstr "Timeout des FTP-Servers"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "Unmöglich die Hostadresse des FTP-Servers zu bestimmen"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "Unmöglich den Hostnamen des FTP-Servers zu bestimmen"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "Verbindung zum FTP-Server fehlgeschlagen"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "IO-Fehler bei lokaler Datei"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Fehler beim Setzen des FTP-Servers in den passiven Modus"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "FTP Unbekannter oder nicht erwarteter Fehler"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -4288,25 +4302,25 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "Passworf für %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
 # , c-format
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
index 2f72c5f..3b757b9 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index d63d1ee..b0d9dc1 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -556,19 +556,19 @@ msgstr ""
 "tarkista paketin asennus käyttäen samoja paketin määrittelyparametrejä kuin "
 "-q "
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "älä tarkista tiedostojen md5-tarkistussummia"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "älä tarkista tiedostojen ominaisuuksia"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "luettele nimiöt, joita voidaan käyttää kyselyn formaatissa"
 
@@ -582,7 +582,7 @@ msgstr "asenna paketti"
 msgid "    -i <packagefile>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "asenna paketti"
 
@@ -600,11 +600,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "paketti %s ei ole asennettu\n"
@@ -613,48 +613,48 @@ msgstr "paketti %s ei ole asennettu\n"
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "älä asenna dokumentointia"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "lyhenne parametreille --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "asenna dokumentaatio"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
 
@@ -662,23 +662,23 @@ msgstr "
 msgid "don't execute any installation scripts"
 msgstr "älä suorita asennusskriptejä"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "tulosta asennuksen eteneminen prosentteina"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "asenna uudelleen, jos paketti on jo asennettu"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "älä asenna, mutta kerro onnistuisiko se"
 
@@ -691,11 +691,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "päivitä paketti (samat parametrit kuin --install, plus)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -707,11 +707,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "poista paketti"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -719,7 +719,7 @@ msgstr ""
 "poista kaikki paketit, joiden nimeä vastaa  <paketti> (tavallisesti, jos  "
 "<paketti> määrittää useita paketteja, tulee virhe)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
@@ -732,54 +732,54 @@ msgstr "    -b<vaihe> <m
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "tee paketti, jossa <vaihe> on jokin:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "valmistele (pura lähdekoodi ja tee korjaukset)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "listatarkistus (tee joitakin tarkistuksia %tiedostoihin)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "käännä (valmistele ja käännä)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "asenna (valmistele, käännä ja asenna)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binääripaketti (valmistele, käännä, asenna, paketoi)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src-paketti (valmistele, käännä, asenna, paketoi)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "siirry suoraan määriteltyyn vaiheeseen (vain c ja i yhteydessä)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "poista käännöspuu, kun valmis"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "generoi PGP-allekirjoitus"
@@ -789,7 +789,7 @@ msgstr "generoi PGP-allekirjoitus"
 msgid "      --buildroot <dir>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "käytä <hakem> käännöspuun juurena"
 
@@ -797,11 +797,11 @@ msgstr "k
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "älä suorita mitään vaiheita"
 
@@ -819,7 +819,7 @@ msgstr "aseta aikatarkistus S sekunniksi (0 ohittaa)"
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -831,7 +831,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "kuten --rebuild, mutta ei käännä paketteja"
 
@@ -840,7 +840,7 @@ msgstr "kuten --rebuild, mutta ei k
 msgid "    --resign <pkg>+       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
@@ -849,7 +849,7 @@ msgstr "allekirjoita paketti (hylk
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "lisää allekirjoitus pakettiin"
 
@@ -863,20 +863,20 @@ msgstr "    -b<vaihe> <m
 msgid "    -K <pkg>+             "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "tarkista paketin allekirjoitus"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "ohita PGP-allekirjoitukset"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "ohita PGP-allekirjoitukset"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "ohita MD5-allekirjoitukset"
 
@@ -888,7 +888,7 @@ msgstr "tarkista, ett
 msgid "rebuild database from existing database"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -896,7 +896,7 @@ msgstr ""
 "aseta tiedostojen oikeudet niiksi, jotka ne ovat pakettien tietokannassa "
 "käyttäen samoja pakettien määrittelyparametrejä kuin -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -905,38 +905,38 @@ msgstr ""
 "tietokannassa käyttäen samoja pakettien määrittelyparametrejä kuin -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "vain yksi päämoodi voidaan määritellä"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ja --uninstall ovat vanhentuneet eivätkä enää toimi.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Käytä sen sijaan -e tai --erase .\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "siirroissa pitää olla =-merkki"
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "siirroissa pitää olla / =-merkin jälkeen"
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -944,111 +944,111 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vain asennus tai päivitys voidaan pakottaa"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "vain toinen --prefix tai --relocate voidaan antaa"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix parametrien pitää alkaa /-merkillä"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1065,7 +1065,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1074,7 +1074,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1082,7 +1082,7 @@ msgstr ""
 "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
 "käännettäessä"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1090,24 +1090,24 @@ msgstr ""
 "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
 "kyseltäessä ja tietokannan uudelleenluonnissa"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametrit --root (-r):lle alettava /-merkillä"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage: voidaan käyttää vain paketteja päivitettäessä"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
@@ -1115,79 +1115,79 @@ msgstr ""
 "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa ja paketteja "
 "todennettaessa"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags: odottamattomia parametrejä"
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "allekirjoitukselle ei määritelty paketteja"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "poistolle ei määritelty paketteja"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "tarkistukselle ei annettu parametrejä"
 
@@ -1531,149 +1531,154 @@ msgstr "tulosta erin
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "älä suorita mitään vaiheita"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "asenna paketti"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "älä suorita asennusskriptejä"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "asenna paketti"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "asenna paketti"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "paketilla ei ole nimeä"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Käytä sen sijaan -e tai --erase .\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "uudelleenkäännolle ei määritelty paketteja"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "käännökselle ei annettu määrittelytiedostoja"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "käännökselle ei määritelty tar-tiedostoja"
 
@@ -2400,53 +2405,57 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "virhe: "
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Internal error"
 msgstr "vakava virhe: "
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "pgp epäonnistui"
@@ -2683,26 +2692,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(ei ole luku)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2712,7 +2721,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2785,110 +2794,110 @@ msgstr "odotin '}'-merkki
 msgid "(unknown type)"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "asenna paketti"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3158,11 +3167,16 @@ msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
 #: lib/problems.c:151
+#, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
 #, fuzzy, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3919,27 +3933,27 @@ msgstr "Sinun pit
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "Haen: %s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3959,187 +3973,187 @@ msgstr "%s:n rmdir ep
 msgid "removal of %s failed: %s"
 msgstr "%s:n poisto epäonnistui: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "asenna paketti"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 #, fuzzy
 msgid "Bad server response"
 msgstr "Virheellinen FTP-palvelijan vastaus"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 #, fuzzy
 msgid "Server IO error"
 msgstr "FTP:n IO-virhe"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 #, fuzzy
 msgid "Server timeout"
 msgstr "FTP-palvelimen timeout"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "FTP-palvelimen osoitetta ei löytynyt"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "FTP-palvelimen nimeä ei löytynyt"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "En saanut yhteyttä FTP-palvelijaan"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "En saanut data-yhteyttä FTP-palvelijaan"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "Paikallisen tiedoston IO-virhe"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Virhe asetettaessa palvelinta passiiviin moodiin"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "FTP:n tuntematon tai odottamaton virhe"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -4189,23 +4203,23 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "%s@%s:n salasana: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s:n luonti epäonnistui\n"
index e422c7a..a78a804 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
 msgid ""
-msgstr "POT-Creation-Date: 2000-09-26 10:31-0400\n"
+msgstr "POT-Creation-Date: 2000-10-24 09:32-0400\n"
 
 #: build.c:25 lib/rpminstall.c:460
 #, c-format
@@ -539,19 +539,19 @@ msgid ""
 "options as -q"
 msgstr "\t\t\t  mêmes options de spécification de package qu'avec -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -566,7 +566,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -582,11 +582,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "aucun package n'a été spécifié pour l'installation"
@@ -595,51 +595,51 @@ msgstr "aucun package n'a 
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - affiche des '#' pendant l'installation du package "
 "(utile avec -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -647,29 +647,29 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr ""
 "      --percent         - affiche des '%' pendant l'installation du package"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installe même si le package remplace des fichiers "
 "déjà présents"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr "      --replacepkgs      - réinstalle si le package est déjà présent"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 #, fuzzy
 msgid "don't install, but tell if it would work or not"
 msgstr ""
@@ -685,14 +685,14 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 #, fuzzy
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 "    -U <packagefile>\t- mise à jour du package (mêmes options que --install, "
 "plus)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -705,17 +705,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -727,64 +727,64 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 #, fuzzy
 msgid "build package, where <stage> is one of:"
 msgstr "    -b<stage> <spec>    - construit le package, <stage> peut valoir:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 #, fuzzy
 msgid "prep (unpack sources and apply patches)"
 msgstr "\t\t\t  p - prépare (extrait le source et applique les patches)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, fuzzy, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "\t\t\t  l - liste vérif (effectue quelques vérifications sur %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 #, fuzzy
 msgid "compile (prep and compile)"
 msgstr "\t\t\t  c - compile (prépare et compile)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 #, fuzzy
 msgid "install (prep, compile, install)"
 msgstr "\t\t\t  i - installe (prépare, compile, installe)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 #, fuzzy
 msgid "binary package (prep, compile, install, package)"
 msgstr "\t\t\t  b - package binaire (prépare, compile, installe, package)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 #, fuzzy
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "\t\t\t  a - package bin/src (prépare, compile, installe, package)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 #, fuzzy
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 "      --short-circuit   - passe directement à l'étape spécifiée (seulement "
 "pour c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 #, fuzzy
 msgid "remove build tree when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "      --sign            - genère une signature PGP"
@@ -793,7 +793,7 @@ msgstr "      --sign            - gen
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -801,11 +801,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -825,7 +825,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 #, fuzzy
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
@@ -838,7 +838,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -847,7 +847,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -855,7 +855,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -869,20 +869,20 @@ msgstr "    --checksig <pkg>+  - v
 msgid "    -K <pkg>+             "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "      --sign            - genère une signature PGP"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -894,53 +894,53 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 #, fuzzy
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u et --uninstall sont obsolètes et seront bientôt supprimés.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Utilisez de préférence -e ou --erase.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -948,136 +948,136 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "un seul type de requête/vérification peut être effectué à la fois"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "source de requête inattendue"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "source de requête inattendue"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "source de requête inattendue"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "seules l'installation et la mise à jour peuvent être forcées"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--replacepkgs ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 #, fuzzy
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
@@ -1095,7 +1095,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1104,7 +1104,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
@@ -1113,7 +1113,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -1122,105 +1122,105 @@ msgstr ""
 "--root (-r) ne peut être spécifié que lors de l'installation, de la "
 "désinstallation ou de l'interrogation d'un package"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage ne peut être spécifié que lors de mises à jour"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 #, fuzzy
 msgid "--nopgp may only be used during signature checking"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "La vérification du mot de passe a échoué\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Mot de passe correct.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 #, fuzzy
 msgid "exec failed\n"
 msgstr "La construction a échoué.\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "aucun package n'a été spécifié pour la vérification de signature"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 #, fuzzy
 msgid "no packages given for signing"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 #, fuzzy
 msgid "extra arguments given for query of all packages"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "aucun argument n'a été fourni pour la vérification"
 
@@ -1544,132 +1544,136 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Utilisez de préférence -e ou --erase.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
@@ -1677,15 +1681,15 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "aucun package n'a été spécifié pour la reconstruction"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "aucun package n'a été spécifié pour la construction"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "aucun package n'a été spécifié pour la construction"
@@ -2408,51 +2412,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "La construction a échoué.\n"
@@ -2689,26 +2697,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, fuzzy, c-format
 msgid "failed to open %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2718,7 +2726,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2791,110 +2799,110 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3165,10 +3173,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3916,27 +3929,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3956,178 +3969,178 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -4176,22 +4189,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
index 2f72c5f..3b757b9 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 2f72c5f..3b757b9 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 2f72c5f..3b757b9 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index d30676c..fcba843 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 1.37\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-08-02 13:00+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
@@ -518,19 +518,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -542,7 +542,7 @@ msgstr "    --install <pakkaskr
 msgid "    -i <packagefile>      "
 msgstr "    -i <pakkaskrá>        "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "setja inn pakka"
 
@@ -558,11 +558,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <gömulslóð>=<nýslóð>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -570,47 +570,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <mappa>    "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -618,23 +618,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -646,11 +646,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -660,17 +660,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -682,52 +682,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -735,7 +735,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -743,11 +743,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -763,7 +763,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -773,7 +773,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -781,7 +781,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -789,7 +789,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -801,19 +801,19 @@ msgstr "    --checksig <pakki>+"
 msgid "    -K <pkg>+             "
 msgstr "    -K <pakki>+           "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -825,50 +825,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -876,105 +876,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -986,115 +986,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1397,124 +1397,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr "   -K <pakki>+           "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2232,51 +2236,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2512,26 +2520,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2541,7 +2549,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2612,108 +2620,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2952,10 +2960,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3693,27 +3706,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3733,177 +3746,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "Óþekkt eða óvænt villa"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== virkt %d tómt %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "+Oþekkt viðfang %c í %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Fjölvi %%%.*s fanmst ekki. Sleppi"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Skrá %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Skráin %s er minni en %d bæti"
@@ -3952,22 +3965,22 @@ msgstr "a
 msgid "Password for %s@%s: "
 msgstr "Lykilorð fyrir %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "villa: %sport verður að vera tala\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "gátt slóðar verður að vera tala\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "gat ekki búið til %s: %s\n"
index 2f72c5f..3b757b9 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 84deb68..20f33c3 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -88,7 +88,7 @@ msgstr "
 # build root [BuildRoot]
 # net share [¥Í¥Ã¥È¶¦Í­]
 # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.115 2000/09/26 18:04:15 jbj Exp $
+# $Id: ja.po,v 1.116 2000/10/24 13:46:52 jbj Exp $
 #: rpm.c:184 rpmqv.c:267
 #, c-format
 msgid "rpm: %s\n"
@@ -546,19 +546,19 @@ msgstr ""
 "-q ¤ÈƱÍͤËƱ¤¸¥Ñ¥Ã¥±¡¼¥¸»ØÄꥪ¥×¥·¥ç¥ó¤ò¼è¤ê\n"
 "¥¤¥ó¥¹¥È¡¼¥ë¤Î¾õ¶·¤ò¸¡¾Ú¤·¤Þ¤¹"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "¥Õ¥¡¥¤¥ë¤Î md5 ¥Á¥§¥Ã¥¯¥µ¥à¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "¥Õ¥¡¥¤¥ë°À­¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 "Ì䤤¹ç¤ï¤»¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤ËÍѤ¤¤é¤ìÆÀ¤ë¥¿¥°¤ò\n"
@@ -572,7 +572,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
@@ -589,11 +589,11 @@ msgstr "
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
@@ -602,51 +602,51 @@ msgstr "
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n"
 "ÀÜƬ¼­¤ò <dir> ¤ËÀßÄꤷ¤Þ¤¹"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤»¤ó"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '#' ¤Çɽ¼¨¤·¤Þ¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "ÀßÄê¤ò¥¹¥­¥Ã¥×¤·¡¢Á´¥Õ¥¡¥¤¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Þ¤»¤ó"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоÝOS¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Þ¤¹¤¬¡¢\n"
 "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Þ¤»¤ó"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "°Í¸À­¤òËþ¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n"
@@ -656,27 +656,27 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 "¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
 "¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '%' ¤Çɽ¼¨¤·¤Þ¤¹"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë»þ¤ËÃÖ¤­´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n"
 "¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Þ¤¹"
 
@@ -688,13 +688,13 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹(--install "
 "¤È´ö¤Ä¤«¤Î¥ª¥×¥·¥ç¥ó¤òÉÕ¤±Â­¤·¤¿¤â¤Î)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -706,11 +706,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Þ¤¹"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -718,7 +718,7 @@ msgstr ""
 "<package> ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Þ¤¹(°ìÈÌ\n"
 "\t\t\t      Åª¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
@@ -730,54 +730,54 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºîÀ®¤·¤Þ¤¹¡¢<stage> ¤Ï°Ê²¼¤Î¤¦¤Á¤Ò¤È¤Ä¤Ç¤¹:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (¥½¡¼¥¹¤òŸ³«¤·¥Ñ¥Ã¥Á¤òÅö¤Æ¤Þ¤¹)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "¥ê¥¹¥È¸¡ºº (%files ¥»¥¯¥·¥ç¥ó¤ÎÂç¤Þ¤«¤Ê¥Á¥§¥Ã¥¯)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "¥³¥ó¥Ñ¥¤¥ë (prep¡¢compile)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë (prep¡¢compile¡¢install)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "¥Ð¥¤¥Ê¥ê¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "¥Ð¥¤¥Ê¥ê/¥½¡¼¥¹¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "»ØÄꤷ¤¿²áÄø¤Þ¤Ç¥¹¥­¥Ã¥×¤·¤Þ¤¹ (c¡¢i ¤Ç¤Î¤ßÍ­¸ú)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ó¥°¸åºîÀ®¥Ä¥ê¡¼¤òºï½ü¤·¤Þ¤¹"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "½ªÎ»¸å¥½¡¼¥¹¤òºï½ü¤·¤Þ¤¹"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "½ªÎ»¸å¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
@@ -786,7 +786,7 @@ msgstr "PGP/GPG 
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "BuildRoot ¤È¤·¤Æ <dir> ¤òÍѤ¤¤Þ¤¹"
 
@@ -794,11 +794,11 @@ msgstr "BuildRoot 
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
@@ -814,7 +814,7 @@ msgstr "
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -827,7 +827,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "--rebuild ¤Ë»÷¤Æ¤¤¤Þ¤¹¤¬¡¢¥Ñ¥Ã¥±¡¼¥¸¤òºîÀ®¤·¤Þ¤»¤ó"
 
@@ -835,7 +835,7 @@ msgstr "--rebuild 
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)"
 
@@ -843,7 +843,7 @@ msgstr "
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤òÄɲä·¤Þ¤¹"
 
@@ -855,20 +855,20 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "PGP ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "GPG ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "MD5 ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
@@ -880,7 +880,7 @@ msgstr "ͭ
 msgid "rebuild database from existing database"
 msgstr "´û¸¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -888,7 +888,7 @@ msgstr ""
 "-q ¤ÈƱÍͤËƱ¤¸¥Ñ¥Ã¥±¡¼¥¸»ØÄꥪ¥×¥·¥ç¥ó¤ò¼è¤ê\n"
 "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Îµö²Ä°À­¤ËÀßÄꤷ¤Þ¤¹"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -897,38 +897,38 @@ msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î½êÍ­¼Ô¤È¥°¥ë¡¼¥×¤ËÀßÄꤷ¤Þ¤¹"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "°ì¤Ä¤Î¥á¥¸¥ã¡¼¥â¡¼¥É¤Î¤ß¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ¤È --uninstall ¤Ï¤â¤Ï¤äÆ°ºî¤·¤Þ¤»¤ó\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "ºÆÇÛÃ֤Ϡ/ ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "ºÆÇÛÃ֤Ϡ= ¤ò´Þ¤ó¤Ç¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "ºÆÇÛÃ֤Ϡ= ¤Î¼¡¤Ë / ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "½ü³°¤¹¤ë¥Ñ¥¹¤Ï / ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -936,45 +936,45 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, fuzzy, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "Ì䤤¹ç¤ï¤»/¸¡¾Ú¤Ï°ìÅ٤˰ì¤Ä¤·¤«¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥é¥°"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥©¡¼¥Þ¥Ã¥È"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥½¡¼¥¹"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¡¢¥½¡¼¥¹ºï½ü¡¢¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ëºï½ü»þ¤Î¤ß¶¯À©¤Ç¤­¤"
 "Þ¤¹"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ßºÆÇÛÃ֤Ǥ­¤Þ¤¹"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¤â¤·¤¯¤Ï --relocate ¤Î¤¤¤º¤ì¤«¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
@@ -982,68 +982,68 @@ msgstr ""
 "--relocate ¤È --excludepath "
 "¤Ï¿·¤·¤¤¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¤Ï¿·µ¬¤Ë¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¤Ø¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¤È --includedocs ¤Ï¤É¤Á¤é¤«°ìÊý¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "-ignoreos ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "-ignoresize ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Îºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1055,7 +1055,7 @@ msgid ""
 "verification"
 msgstr "--notriggers ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1063,13 +1063,13 @@ msgid ""
 msgstr ""
 "--nodeps ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎºîÀ®¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢ºîÀ®»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1077,101 +1077,101 @@ msgstr ""
 "--root (-r) "
 "¤Ï¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢Ì䤤¹ç¤ï¤»¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹ºÆ¹½ÃÛ»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage ¤Ï¥¢¥Ã¥×¥°¥ì¡¼¥É»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp ¤Ï½ð̾¸¡ºº»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg ¤Ï½ð̾¸¡ºº»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 ¤Ï½ð̾¸¡ºº¤È¥Ñ¥Ã¥±¡¼¥¸¸¡¾Ú»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr "½ð̾¤¹¤ë¤¿¤á¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó\n"
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "pgp ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤ÏÀµ¾ï¤Ç¤¹¡¥\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign ¤Ï¥Ñ¥Ã¥±¡¼¥¸ºîÀ®»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "¼Â¹Ô¼ºÇÔ\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¤Î°ú¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "½ð̾¸¡ºº¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "½ð̾¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "Á´¥Ñ¥Ã¥±¡¼¥¸¤ÎÌ䤤¹ç¤ï¤»¤Î¤¿¤á¤Ë;ʬ¤Ê°ú¿ô¤¬¤¢¤ê¤Þ¤¹"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "Á´¥Ñ¥Ã¥±¡¼¥¸¤Î¸¡¾Ú¤Î¤¿¤á¤Ë;ʬ¤Ê°ú¿ô¤¬¤¢¤ê¤Þ¤¹"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "¸¡¾Ú¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
@@ -1489,136 +1489,141 @@ msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤Ë´Þ¤Þ¤ì¤ë¥È¥ê¥¬¡¼¥¹¥¯¥ê¥×¥È¤òɽ¼¨¤·¤Þ\n"
 "\t\t\t       ¤¹"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "¥Ñ¥¹ <path> Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 "¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
 "¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "´û¸¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "ºÆºîÀ®¤¹¤ë¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
@@ -2345,53 +2350,57 @@ msgstr "%d 
 msgid "line %d: Bad %s number: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤¬¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, fuzzy, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "(¥¨¥é¡¼ 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 #, fuzzy
 msgid "Unknown file type"
 msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Internal error"
 msgstr "ÆâÉô¥¨¥é¡¼"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "¼ºÇÔ - "
@@ -2635,26 +2644,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() fugger ¥µ¥¤¥º¤òÊÖ¤¹¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "stat %s ¤Ë¼ºÇÔ: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
@@ -2664,7 +2673,7 @@ msgstr "
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
@@ -2735,22 +2744,22 @@ msgstr "
 msgid "(unknown type)"
 msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: ¥¢¥¯¥·¥ç¥ó: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/install.c:230
+#: lib/install.c:253
 #, fuzzy
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
@@ -2760,87 +2769,87 @@ msgstr ""
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¥½¡¼¥¹¤Ï: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec ¥Õ¥¡¥¤¥ë¤Ï: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
@@ -3118,11 +3127,18 @@ msgstr ""
 "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ç)"
 
 #: lib/problems.c:151
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+"¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s "
+"¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ç)"
+
+#: lib/problems.c:158
 #, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
@@ -3878,27 +3894,27 @@ msgstr "
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
@@ -3918,191 +3934,191 @@ msgstr "%s 
 msgid "removal of %s failed: %s"
 msgstr "%s ¤Îºï½ü¤Ë¼ºÇÔ: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "¥Õ¥¡¥¤¥ë test = %d ¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤Ï ¥æ¡¼¥¶Ì¾¤È id "
 "¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id "
 "¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "À®¸ù"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 #, fuzzy
 msgid "Bad server response"
 msgstr "¥µ¡¼¥Ð¤«¤éÀµ¾ï¤Ê±þÅú¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 #, fuzzy
 msgid "Server IO error"
 msgstr "¥µ¡¼¥Ð IO ¥¨¥é¡¼"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 #, fuzzy
 msgid "Server timeout"
 msgstr "¥µ¡¼¥Ð¥¿¥¤¥à¥¢¥¦¥È"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "¥µ¡¼¥Ð¤Î¥Û¥¹¥È¥¢¥É¥ì¥¹¤òÄ´¤Ù¤é¤ì¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "¥µ¡¼¥Ð¤Î¥Û¥¹¥È̾¤òÄ´¤Ù¤é¤ì¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "¥µ¡¼¥Ð¤Ø¤ÎÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "¥µ¡¼¥Ð¤È¤Î¥Ç¡¼¥¿¥³¥Í¥¯¥·¥ç¥ó¤Î³ÎΩ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¤Î IO ¥¨¥é¡¼"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "¥ê¥â¡¼¥È¥µ¡¼¥Ð¤Î¥Ñ¥Ã¥·¥Ö¥â¡¼¥ÉÀßÄꥨ¥é¡¼"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "¥µ¡¼¥Ð¾å¤Ë¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "½èÍýÃæ¤Î¥¢¥Ü¡¼¥È"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "ÉÔÌÀ¤â¤·¤¯¤Ïͽ´ü¤»¤Ì¥¨¥é¡¼"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "%s ¤Ø %s pw %s ¤È¤·¤Æ¥í¥°¥¤¥óÃæ\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== ¥¢¥¯¥Æ¥£¥Ö %d ¥¨¥ó¥×¥Æ¥£ %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "¥Þ¥¯¥í %%%s ¤Ï¥Ü¥Ç¥£¤¬½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "¥Þ¥¯¥í %%%s ¤Ï°ãË¡¤Ê̾Á°¤Ç¤¹(%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "¥Þ¥¯¥í %%%s ¤Ï opts ¤¬½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "¥Þ¥¯¥í %%%s ¤Ï¶õ¤Î¥Ü¥Ç¥£¤Ç¤¹"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "¥Þ¥¯¥í %%%s ¤Ï¿­Ä¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "¥Þ¥¯¥í %%%s ¤Ï°ãË¡¤Ê̾Á°¤Ç¤¹(%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "¥Þ¥¯¥í %%%s (%s) ¤Ï¥ì¥Ù¥ë %d °Ê²¼¤Ç»ÈÍѤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "ÉÔÌÀ¤Ê¥ª¥×¥·¥ç¥ó %c (%s(%s)Ãæ¤Ë)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "ºÆµ¢¤Î¿¼¤µ(%d)¤¬ºÇÂçÃÍ(%d)¤è¤ê¤âÂ礭¤¤"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, fuzzy, c-format
 msgid "Unterminated %c: %s"
 msgstr "½ªÃ¼¤µ¤ì¤Æ¤¤¤Ê¤¤ %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr "A %% ¤Ï¹½Ê¸²òÀϤǤ­¤Ê¤¤¥Þ¥¯¥í¤¬Â³¤¤¤Æ¤¤¤Þ¤¹"
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "¥Þ¥¯¥í %%%.*s ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¡¢¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "¥¿¡¼¥²¥Ã¥È¥Ð¥Ã¥Õ¥¡¥ª¡¼¥Ð¡¼¥Õ¥í¡¼"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "¥Õ¥¡¥¤¥ë %s: ¤Ï %d ¥Ð¥¤¥È¤è¤ê¾®¤µ¤¤¤Ç¤¹"
@@ -4152,23 +4168,23 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "%s@%s ¤Î¥Ñ¥¹¥ï¡¼¥É:"
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "¥¨¥é¡¼: %s¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "url ¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
index 2f72c5f..3b757b9 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index a856463..7bc7b0a 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-08-04 02:59+02:00\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <no@li.org>\n"
@@ -520,19 +520,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "ikke verifiser filens md5 sjekksum"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "ikke verifiser filattributter"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -544,7 +544,7 @@ msgstr "    --install <pakkefil>"
 msgid "    -i <packagefile>      "
 msgstr "    -i <pakkefil>         "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "installér pakke"
 
@@ -560,11 +560,11 @@ msgstr "hopp over filer i sti <sti>"
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -572,47 +572,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "ikke installer dokumentasjon"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "ikke verifiser pakkearkitektur"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "ikke sjekk diskplass før installasjon"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "ikke verifiser operativsystem for pakken"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "installér dokumentasjon"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "oppdatér databasen, men ikke modifiser filsystemet"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -620,23 +620,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr "ikke kjør noen installasjonsskript"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "ikke kjør skript som utløses av denne pakken"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "skriv ut prosentvis fremgang etter som pakken installeres"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "installér selv om pakken erstatter installerte filer"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "reinstallér selv om pakken allerede er installert"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "ikke installér, men si ifra om det ville virke eller ikke"
 
@@ -648,11 +648,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "oppgradér pakke (samme alternativ som --install, plus)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -662,17 +662,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "slett (avinstallér) pakke"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "ikke kjør noen pakkespesifikke skript"
 
@@ -684,52 +684,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "bygg pakke, hvor <steg> er ett av:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (pakk ut kildekoden og legg til patcher)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "listesjekk (utfør noen kontroller på %filer)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilér (prep og kompilér)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "installér (prep, kompilér, installér)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binær pakke (prep, kompilér, installér, pakk)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src pakke (prep, kompilér, installér, pakk)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "hopp rett til spesifisert steg (kun for c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "fjern byggtréet når ferdig"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr "fjern kildekoden når ferdig"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr "fjern specfilen når ferdig"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "generér PGP/GPG signatur"
 
@@ -737,7 +737,7 @@ msgstr "gener
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "bruk <katalog> som byggrot"
 
@@ -745,11 +745,11 @@ msgstr "bruk <katalog> som byggrot"
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "ikke kjør noen steg"
 
@@ -765,7 +765,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -775,7 +775,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "som --rebuild, men ikke bygg noen pakke"
 
@@ -783,7 +783,7 @@ msgstr "som --rebuild, men ikke bygg noen pakke"
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "signér en pakke (forkast nåværende signatur)"
 
@@ -791,7 +791,7 @@ msgstr "sign
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "legg til signatur til en pakke"
 
@@ -803,19 +803,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr "    -K <pkg>+             "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "verifisér pakkesignatur"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "hopp over PGP-signaturer"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "hopp over GPG-signaturer"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "hopp over MD5-signaturer"
 
@@ -827,50 +827,50 @@ msgstr "sjekk at en gyldig database eksisterer"
 msgid "rebuild database from existing database"
 msgstr "bygg opp igjen databasen fra den eksisterende databasen"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "kun ett større modi kan spesifiseres"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Bruk -e eller --erase i stedet.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "relokasjoner må begynne med en /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "relokasjoner må inneholde et ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "relokasjoner må ha et / etter ="
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "eksluderingssti må begynne med en /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -878,105 +878,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Intern feil i argumentprosesseringen (%d) :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -988,115 +988,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1401,125 +1401,130 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "ikke kjør noen steg"
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Bruk -e eller --erase i stedet.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2237,51 +2242,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2517,26 +2526,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2546,7 +2555,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2617,108 +2626,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2957,10 +2966,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3698,27 +3712,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3738,177 +3752,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "Overflyt i målbuffer"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Fil %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Fil %s er mindre enn %d bytes"
@@ -3957,22 +3971,22 @@ msgstr "advarseo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgid "Password for %s@%s: "
 msgstr "Passord for %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "feil: %s-port må være et tall\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "url-port må være et tall\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "kunne ikke opprette %s: %s\n"
index 8ec1182..fa595a3 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -547,19 +547,19 @@ msgid ""
 "options as -q"
 msgstr "sprawd¼ stan pakietu (u¿ywa tych samych opcji co -q)"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "nie sprawdzaj sum kontrolnych md5 plików"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "nie sprawdzaj atrybutów plików"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "wypisz etykiety w³asno¶ci, o które mo¿na zapytaæ"
 
@@ -571,7 +571,7 @@ msgstr "    --install <nazwa pakietu>"
 msgid "    -i <packagefile>      "
 msgstr "    -i <nazwa pakietu>      "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "instaluj pakiet"
 
@@ -587,11 +587,11 @@ msgstr "pomi
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
@@ -600,49 +600,49 @@ msgstr "nie mo
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <katalog>      "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "nie instaluj dokumentacji"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by "
 "pominêto"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "nie sprawdzaj architektury systemu"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "zainstaluj dokumentacjê"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
 
@@ -650,23 +650,23 @@ msgstr "nie zmieniaj kolejno
 msgid "don't execute any installation scripts"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "wy¶wietlaj stan instalacji w procentach"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
 
@@ -678,11 +678,11 @@ msgstr "    --upgrade <nazwa pakietu>"
 msgid "    -U <packagefile>      "
 msgstr "    -U <nazwa pakietu>      "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "uaktualnij pakiet (te same opcje jak --install, plus)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -694,11 +694,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <pakiet>"
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "usuñ (odinstaluj) pakiet"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -706,7 +706,7 @@ msgstr ""
 "usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
 "wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
@@ -718,54 +718,54 @@ msgstr "    -b<etap> <plik-spec>  "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etap> <plik-tar>   "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "buduj pakiet, gdzie <etap> to:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "preparuj (rozpakuj ¼ród³a i na³ó¿ ³aty)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 "sprawdzanie z listy (wykonuje kilka podstawowych weryfikacji na %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompiluj (preparuj i kompiluj)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "instaluj (preparuj, kompiluj i instaluj)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "pakiet binarny (preparuj, kompiluj, instaluj, pakiet)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "pakiet binarny/¼ród³owy (preparuj, kompiluj, instaluj, pakiet)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "przejd¼ od razu do podanego etapu (tylko dla c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "usuñ budowane drzewo po skoñczeniu"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr "usuñ ¼ród³a po zakoñczeniu"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "usuñ speca po zakoñczeniu"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "generuj sygnaturê PGP/GPG"
 
@@ -773,7 +773,7 @@ msgstr "generuj sygnatur
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <katalog>"
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "u¿yj <katalog> jako korzeñ budowanego drzewa"
 
@@ -781,11 +781,11 @@ msgstr "u
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "buduj pakiety dla platform docelowych platforma1...platformaN."
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "nie wykonuj ¿adnych etapów"
 
@@ -801,7 +801,7 @@ msgstr "ustaw sprawdzanie czasu do ilo
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <pkt_¼ród³> "
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -813,7 +813,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <pkt_¼ród³>"
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "jak --rebuild, ale nie buduj ¿adnych pakietów"
 
@@ -821,7 +821,7 @@ msgstr "jak --rebuild, ale nie buduj 
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pakiet>+    "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)"
 
@@ -829,7 +829,7 @@ msgstr "podpisz pakiet (porzu
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pakiet>+   "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "dodaj sygnaturê do pakietu"
 
@@ -843,19 +843,19 @@ msgstr "    --checksig <pakiet>+  "
 msgid "    -K <pkg>+             "
 msgstr "    --resign <pakiet>+    "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "pomiñ wszelkie sygnatury PGP"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "pomiñ wszelkie sygnatury GPG"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "pomiñ wszelkie sygnatury MD5"
 
@@ -867,7 +867,7 @@ msgstr "upewnij si
 msgid "rebuild database from existing database"
 msgstr "przebuduj istniej±c± bazê"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -875,7 +875,7 @@ msgstr ""
 "ustaw prawa dostêpu takie jak zapisano w bazie pakietów (u¿ywa tych samych "
 "opcji co -q)"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -884,37 +884,37 @@ msgstr ""
 "samych opcji co -q)"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u i --uninstall nie s± ju¿ obs³ugiwane i nie pracuj±.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "U¿yj -e lub --erase\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "drzewa przesuniêæ musz± zaczynaæ sie od /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ / po ="
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "¶cie¿ki wy³±czeñ musz± siê zaczynaæ od /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -922,107 +922,107 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "tylko jeden typ odpytywania/sprawdzania mo¿na wykonaæ na raz"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 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"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¿na u¿yæ tylko w trakcie instalacji nowych pakietów"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 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"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1038,7 +1038,7 @@ msgstr ""
 "--notriggers mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub sprawdzania "
 "pakietów"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1047,14 +1047,14 @@ msgstr ""
 "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub "
 "sprawdzania pakietów"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 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"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1062,98 +1062,98 @@ msgstr ""
 "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania "
 "pakietów lub przebudowywania bazy"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage mo¿na u¿yæ tylko podczas aktualizacji"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp mo¿na u¿yæ tylko w trakcie sprawdzania sygnatury"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg mo¿na u¿yæ tylko podczas sprawdzania sygnatury"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nomd5 mo¿na u¿yæ tylko podczas sprawdzania sygnatury i weryfkiacji pakietu"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "brak dostêpu do pliku %s\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "nie znaleziono pgp: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr "Podaj has³o: "
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Weryfikacja has³a nieudana\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Has³o jest prawid³owe.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "nieoczekiwane argumenty dla --querytags "
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "nie podano nazwy pakietu do podpisania"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "nie podano nazw plików do usuniêcia"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "nie podano argumentów dla sprawdzania"
 
@@ -1493,149 +1493,154 @@ msgstr "wy
 msgid "show the trigger scriptlets contained in the package"
 msgstr "wy¶wietl trigger skrypty zawarte w pakiecie"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "nie wykonuj ¿adnych etapów"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "    --install <nazwa pakietu>"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -i <nazwa pakietu>      "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "      --excludepath <¶cie¿ka>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "odpytywanie pakietów zahaczanych przez pakiet"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "      --prefix <katalog>      "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "    --upgrade <nazwa pakietu>"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -U <nazwa pakietu>      "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "    --erase <pakiet>"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<etap> <plik-spec>  "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -t<etap> <plik-tar>   "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "pakiet nie ma nazwy"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "      --buildroot <katalog>"
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "      --target=<platforma>+"
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    --rebuild <pkt_¼ród³> "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    --recompile <pkt_¼ród³>"
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    --resign <pakiet>+    "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    --addsign <pakiet>+   "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    --checksig <pakiet>+  "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    --resign <pakiet>+    "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "przebuduj istniej±c± bazê"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "U¿yj -e lub --erase\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers 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:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "nie podano nazw pakietów do przebudowania"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "nie podano nazw plików spec do budowania"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "nie podano nazw plików tar do budowania"
 
@@ -2359,51 +2364,55 @@ msgstr "linia %d: b
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linia %d: B³êdny numer %s: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "nie mo¿na zmieniæ nazwy %s na %s: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(b³±d 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "B³êdny magic"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "B³êdny/nieczytelny nag³ówek"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr "Nieznany typ pliku"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr "Brak twardego dowi±zania"
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
@@ -2639,26 +2648,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(nie jest liczb±)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "stat nie powiod³o siê %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
@@ -2668,7 +2677,7 @@ msgstr "plik %s jest na nieznanym urz
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
@@ -2739,108 +2748,108 @@ msgstr "spodziewany | na ko
 msgid "(unknown type)"
 msgstr "(nieznany typ)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   plik: %s akcja: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "warto¶æ %%instchangelog w pliku makra powinna byæ liczb±, a nie jest"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "instacja pakietu ¼ród³owego\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¼ród³a w: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "plik spec w: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "przebieg testowy - instalacja zatrzymana\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ostrze¿enie: %s utworzony jako %s"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
@@ -3099,11 +3108,16 @@ msgid "installing package %s-%s-%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:151
+#, fuzzy, c-format
+msgid "installing package %s-%s-%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:158
 #, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
@@ -3848,27 +3862,27 @@ msgstr "Musisz ustawi
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
@@ -3888,181 +3902,181 @@ msgstr "skasowanie katalogu %s nie powiod
 msgid "removal of %s failed: %s"
 msgstr "skasowanie %s nie powiod³o siê: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "usunie pliki test = %d\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "pakiet nie specyfikuje ani nazwy u¿ytkownika ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "brak    %s\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "Sukces"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr "B³êdna odpowied¼ serwera"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr "B³±d WE/WY(IO) serwera"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "Przekroczony limit czasu serwera"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr "Nie mo¿na znale¼æ adresu serwera"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr "Nie mo¿na znale¼æ nazwy serwera"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr "Po³±czenie z serwerem nie powiod³o siê"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr "Otwarcie transmisji danych z serwera nie powiod³o siê"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "B³±d WE/WY(IO) na lokalnym pliku"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "B³±d: ustawienie zdalnego serwera w tryb pasywny nie powiod³o siê"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Plik nie zosta³ znaleziony na serwerze"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "Przerywanie ..."
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "Nieznany lub nieoczekiwany b³±d"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "logowanie do %s jako %s, has³o %s\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktywny %d pusty %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(pusty)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(pusty)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s ma niezakoñczon± strukturê"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s ma niedozwolon± nazwê (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s ma niezakoñczone opcje"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s nie zawiera ¿adnych poleceñ"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "Rozwiniêcie makra %%%s nie powiod³o siê"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s ma niedozwolon± nazwê (%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nie by³o u¿yte poni¿ej poziomu %d"
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Nieznana opcja %c in %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "G³êboko¶æ(%d) rekursji wiêksza mi¿ maks(%d)"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Niezakoñczone %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr "Napotkano nieprzetwarzalne makro po %%"
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Nie znaleziono makra %%%.*s, makro pominiête"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "Przepe³nienie bufora docelowego"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Plik %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Plik %s jest mniejszy ni¿ %d bajtów"
@@ -4112,22 +4126,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "Has³o dla %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "b³±d: %sport musi byæ liczb±\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "port musi byæ liczb±\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "utworzenie %s nie powiod³o siê\n"
index 4ea3f0d..d0c98a0 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-08-01 21:11+01:00\n"
 "Last-Translator: Pedro Morais <morais@poli.org>\n"
 "Language-Team: pt <morais@poli.org>\n"
@@ -500,19 +500,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -524,7 +524,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -540,11 +540,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -552,47 +552,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -600,23 +600,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -628,11 +628,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -642,17 +642,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -664,52 +664,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -717,7 +717,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -725,11 +725,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -745,7 +745,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -755,7 +755,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -763,7 +763,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -771,7 +771,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -783,19 +783,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -807,50 +807,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -858,105 +858,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -968,115 +968,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1367,124 +1367,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2202,51 +2206,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2482,26 +2490,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2582,108 +2590,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2922,10 +2930,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3669,27 +3682,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3709,177 +3722,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3928,22 +3941,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 8ca0a4a..59ef31e 100644 (file)
@@ -2,7 +2,7 @@
 # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
 #
 msgid ""
-msgstr "POT-Creation-Date: 2000-09-26 10:31-0400\n"
+msgstr "POT-Creation-Date: 2000-10-24 09:32-0400\n"
 
 #: build.c:25 lib/rpminstall.c:460
 #, c-format
@@ -577,19 +577,19 @@ msgstr ""
 "verifique uma instalação de pacote usando as mesmas opções de especificação "
 "de pacote do -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "não verifique as dependências do pacote"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "não verifique os checksums md5 do arquivo"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "não verifique os atributos dos arquivos"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "liste as etiquetas que podem ser usadas em um formato de pesquisa"
 
@@ -603,7 +603,7 @@ msgstr "instale pacote"
 msgid "    -i <packagefile>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "instale pacote"
 
@@ -621,11 +621,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "não foi passado pacote para instalação"
@@ -634,48 +634,48 @@ msgstr "n
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "realoque o pacote para <diretório>, se realocável"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "não instale documentação"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "aliás para --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 #, fuzzy
 msgid "don't verify package architecture"
 msgstr "não verifique a arquitetura do pacote"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "não verifique o sistema operacional do pacote"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "instale documentação"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 #, fuzzy
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "não verifique as dependências do pacote"
@@ -684,23 +684,23 @@ msgstr "n
 msgid "don't execute any installation scripts"
 msgstr "não execute nenhuma script de instalação"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "instale mesmo que o pacote substitua arquivos já instalados"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "reinstale se o pacote já estiver presente"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "não instale, mas diga se a instalação funcionará ou não"
 
@@ -713,11 +713,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "atualize pacote (mesmas opcões em --install, mais"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -729,11 +729,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "apague (desinstale) pacote"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -741,7 +741,7 @@ msgstr ""
 "remova todos os pacotes iguais a <pacote> (normalmente um erro é gerado se "
 "<pacote> especificou múltiplos pacotes)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "não execute nenhuma script específica do pacote"
 
@@ -754,55 +754,55 @@ msgstr "    -b<est
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "Constroi pacote, onde <estágio> é um dos seguintes:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (descompacte fontes e aplique patches)"
 
 # , c-format
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "cheque lista (faça algumas checagens em %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "compile (prep e compile)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "instale (prep, compile, instale)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "pacote binário (prep, compile, instale, pacote)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "pacote bin/src (prep, compile, instale, pacote)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "pule direto para o estágio especificado (somente para c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "gere assinatura PGP"
@@ -812,7 +812,7 @@ msgstr "gere assinatura PGP"
 msgid "      --buildroot <dir>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 #, fuzzy
 msgid "use <dir> as the build root"
 msgstr "use s como o root da construção"
@@ -821,11 +821,11 @@ msgstr "use s como o root da constru
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "não execute nenhum estágio"
 
@@ -843,7 +843,7 @@ msgstr "atribua S segundos ao tempo de checagem (0 o desabilita)"
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -855,7 +855,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "como --rebuild, mas não construa nenhum pacote"
 
@@ -864,7 +864,7 @@ msgstr "como --rebuild, mas n
 msgid "    --resign <pkg>+       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
@@ -873,7 +873,7 @@ msgstr "assine um pacote (descarte a assinatura corrente)"
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "adicione uma assinatura a um pacote"
 
@@ -887,20 +887,20 @@ msgstr "    -b<est
 msgid "    -K <pkg>+             "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "verifique a assinatura do pacote"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "desconsidere quaisquer assinaturas PGP"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "desconsidere quaisquer assinaturas PGP"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "desconsidere quaisquer assinaturas MD5"
 
@@ -912,7 +912,7 @@ msgstr "certifique que um banco de dados v
 msgid "rebuild database from existing database"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -920,7 +920,7 @@ msgstr ""
 "atribua as permissões dos arquivos para aquelas no banco de dados de pacotes "
 "usando as mesmas opções de especificação de pacote do -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -929,39 +929,39 @@ msgstr ""
 "usando as mesmas opções de especificação de pacote do -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "somente um modo principal pode ser especificado"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u e --uninstall foram descontinuados e não funcionam mais.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Use -e ou --erase no lugar.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -969,126 +969,126 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "um tipo de pesquisa/verificação pode ser feita por vez"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "fonte de pesquisa não esperado"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "fonte de pesquisa não esperado"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "fonte de pesquisa não esperado"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "somente instalação e atualização podem ser forçadas"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, 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"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 "--prefix somente pode ser usada quando se está instalando novos pacotes"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumentos para --prefix devem começar com uma /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) somente podem ser especificado durante instalações de pacotes"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--excludedocs somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--includedocs somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--ignorearch somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 "--ignoreos somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 "--ignoreos somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--allmatches somente pode ser especificado durante desinstalações de pacotes"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1105,7 +1105,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1114,7 +1114,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1122,7 +1122,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1130,24 +1130,24 @@ msgstr ""
 "--root (-r) somente pode ser especificado durante [des]instalações, "
 "pesquisas e reconstrução de bancos de dados"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumentos para --root (-r) devem começar com uma /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage somente pode ser usado durante a atualização de pacotes"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
@@ -1155,79 +1155,79 @@ msgstr ""
 "--nopgp somente pode ser usado durante checagem de assinaturas e verificação "
 "de pacotes"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "não foi passado pacote para desinstalação"
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Checagem de pass phrase falhou\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Pass phrase ok.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign somente pode ser usado durante a construção de pacotes"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Construção falhou.\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos não esperados em --querytags"
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "nenhum pacote informado para checagem de assinatura"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "não foram passados pacotes para assinatura"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "não foi passado pacote para desinstalação"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "não foi passado pacote para instalação"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "não foi passado argumento para pesquisa"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "não foi passado argumento para verificação"
 
@@ -1571,133 +1571,138 @@ msgstr "mostra as v
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "não execute nenhum estágio"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "instale pacote"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "não execute nenhuma script de instalação"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "instale pacote"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "instale pacote"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Use -e ou --erase no lugar.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath passado para uma operação que não usa um banco de dados"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
@@ -1705,15 +1710,15 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "não foram passados pacotes para reconstrução"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "não foi passado arquivo spec para construção"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "não foram passados arquivos tar para construção"
 
@@ -2475,51 +2480,55 @@ msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "Construção falhou.\n"
@@ -2757,28 +2766,28 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
 # , c-format
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
 # , c-format
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, fuzzy, c-format
 msgid "failed to open %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2788,7 +2797,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2861,113 +2870,113 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3232,10 +3241,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -4034,7 +4048,7 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "RPM versão %s\n"
@@ -4047,23 +4061,23 @@ msgstr "RPM vers
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM versão %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
 # , c-format
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -4083,180 +4097,180 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instale pacote"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "não foi passado pacote para desinstalação"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -4305,24 +4319,24 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
 # , c-format
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "Não consegui abrir o pipe tar: %s\n"
index c5fd890..d878e20 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -498,19 +498,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -522,7 +522,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -538,11 +538,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -550,47 +550,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -598,23 +598,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -626,11 +626,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -640,17 +640,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -662,52 +662,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -715,7 +715,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -723,11 +723,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -743,7 +743,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -753,7 +753,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -761,7 +761,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -769,7 +769,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -781,19 +781,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -805,50 +805,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -856,105 +856,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -966,115 +966,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1365,124 +1365,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2200,51 +2204,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2480,26 +2488,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2509,7 +2517,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2580,108 +2588,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2920,10 +2928,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3661,27 +3674,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3701,177 +3714,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3920,22 +3933,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index f2e5247..cc8f771 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-10-20 15:49-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -2209,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2518,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:352
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2589,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:169 lib/uninstall.c:191
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:190
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:198
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:231
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:613
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:614
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:658
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:678
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:684 lib/install.c:714
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:688
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:708
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:718
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:750 lib/install.c:778
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:796
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:798 lib/install.c:1070 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:888
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:933
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:993
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:998
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1066
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3751,59 +3755,59 @@ msgstr ""
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
index 5c2d8bc..9900bdd 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 1.1\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-08-08 01:20+0300\n"
 "Last-Translator: Leon Kanter <leon@blackcatlinux.com>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -524,19 +524,19 @@ msgstr ""
 "×ÅÒÉÆÉÃÉÒÏ×ÁÔØ ÉÎÓÔÁÌÌÑÃÉÀ ÐÁËÅÔÁ, ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ "
 "ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÐÁËÅÔÁ"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÙÅ md5-ÓÕÍÍÙ ÆÁÊÌÏ×"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÔÔÒÉÂÕÔÙ ÆÁÊÌÏ×"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "×Ù×ÅÓÔÉ ÔÜÇÉ, ËÏÔÏÒÙÅ ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ × ÆÏÒÍÁÔÅ ÚÁÐÒÏÓÁ"
 
@@ -548,7 +548,7 @@ msgstr "    --install <
 msgid "    -i <packagefile>      "
 msgstr "    -i <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ"
 
@@ -564,11 +564,11 @@ msgstr "
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <oldpath>=<newpath>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ <oldpath> × <newpath>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅÐÅÒÅÍÅÝÁÅÍÏÍ ÐÁËÅÔÅ"
 
@@ -576,49 +576,49 @@ msgstr "
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <ËÁÔÁÌÏÇ>  "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÷óå ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
 "ÐÒÏÐÕÝÅÎÙ"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
@@ -626,23 +626,23 @@ msgstr "
 msgid "don't execute any installation scripts"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ËÁËÉÈ-ÌÉÂÏ ÕÓÔÁÎÏ×ÏÞÎÙÈ ÓËÒÉÐÔÏ×"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÏ×, ×Ú×ÅÄÅÎÎÙÈ ÎÁ ÜÔÏÔ ÐÁËÅÔ"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
 
@@ -654,11 +654,11 @@ msgstr "    --upgrade <
 msgid "    -U <packagefile>      "
 msgstr "    -U <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "ÏÂÎÏ×ÌÅÎÉÅ ÐÁËÅÔÁ (ÔÅ ÖÅ ÏÐÃÉÉ, ÞÔÏ É Ó --install, ÐÌÀÓ)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -670,11 +670,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <ÐÁËÅÔ>  "
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -682,7 +682,7 @@ msgstr ""
 "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
 "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓËÒÉÐÔÏ×, ÓÐÅÃÉÆÉÞÎÙÈ ÄÌÑ ÐÁËÅÔÁ"
 
@@ -694,53 +694,53 @@ msgstr "    -b<stage> <spec>      "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<stage> <tarball>   "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "ÓÏÂÒÁÔØ ÐÁËÅÔ, ÇÄÅ <stage> - ÏÄÎÏ ÉÚ:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (ÉÓÐÏÌÎÉÔØ %prep)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "list check (ÐÒÏÉÚ×ÅÓÔÉ ÐÒÏ×ÅÒËÕ ÓÅËÃÉÉ %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "compile (ÉÓÐÏÌÎÉÔØ %prep É %build)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "install (ÉÓÐÏÌÎÉÔØ %prep, %build É %install)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binary package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install É ÓÏÚÄÁÔØ RPM)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "bin/src package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install, ÓÏÚÄÁÔØ RPM É SRPM)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "ÐÅÒÅÊÔÉ ÎÅÐÏÓÒÅÄÓÔ×ÅÎÎÏ Ë ÕËÁÚÁÎÎÏÍÕ ÜÔÁÐÕ (ÔÏÌØËÏ ÄÌÑ c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ×"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÉÓÈÏÄÎÉËb"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr "ÕÄÁÌÉÔØ spec-ÆÁÊÌ ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ PGP/GPG-ÐÏÄÐÉÓØ"
 
@@ -748,7 +748,7 @@ msgstr "
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <ËÁÔ.>  "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔ.> ËÁË ËÏÒÎÅ×ÏÊ ÄÌÑ ÐÏÓÔÒÏÅÎÉÑ ÐÁËÅÔÁ"
 
@@ -756,11 +756,11 @@ msgstr "
 msgid "      --target=<platform>+"
 msgstr "      --target=<ÐÌÁÔÆÏÒÍÁ>+"
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "ÐÏÓÔÒÏÉÔØ ÐÁËÅÔÙ ÄÌÑ ÃÅÌÅ×ÙÈ ÐÌÁÔÆÏÒÍ ÐÌÁÔÆÏÒÍÁ1...ÐÌÁÔÆÏÒÍÁN"
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ×"
 
@@ -776,7 +776,7 @@ msgstr "
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <src_pkg>   "
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -788,7 +788,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <src_pkg> "
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "ËÁË --rebuild, ÎÏ ÎÅ ÓÏÂÉÒÁÅÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×"
 
@@ -796,7 +796,7 @@ msgstr "
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pkg>+       "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)"
 
@@ -804,7 +804,7 @@ msgstr "
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pkg>+      "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "ÄÏÂÁ×ÉÔØ ÐÏÄÐÉÓØ Ë ÐÁËÅÔÕ"
 
@@ -816,19 +816,19 @@ msgstr "    --checksig <pkg>+"
 msgid "    -K <pkg>+             "
 msgstr "    -K <ÐÁËÅÔ>+           "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ PGP-ÐÏÄÐÉÓÉ"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ GPG-ÐÏÄÐÉÓÉ"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ"
 
@@ -840,7 +840,7 @@ msgstr "
 msgid "rebuild database from existing database"
 msgstr "ÐÅÒÅÓÔÒÏÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÉÚ ÓÕÝÅÓÔ×ÕÀÝÅÊ ÂÁÚÙ"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -848,7 +848,7 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÆÁÊÌÏ× ÔÁËÉÅ ÖÅ, ËÁË × ÂÁÚÅ ÄÁÎÎÙÈ ÐÁËÅÔÁ, "
 "ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -857,37 +857,37 @@ msgstr ""
 "ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ, ÞÔÏ É -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "ÏÐÃÉÉ -u É --uninstall ÕÓÔÁÒÅÌÉ É ÂÏÌØÛÅ ÎÅ ÒÁÂÏÔÁÀÔ.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "÷ÍÅÓÔÏ ÎÉÈ ÉÓÐÏÌØÚÕÊÔÅ -e ÉÌÉ --erase.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÉÍÅÔØ / ÐÏÓÌÅ ="
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "ÉÓËÌÀÞÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -895,111 +895,111 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÚÁ ÏÄÉΠÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅΠÔÏÌØËÏ ÏÄÉΠÔÉРÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× "
 "É spec-ÆÁÊÌÁ"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ÉÚ ÏÐÃÉÊ --prefix ÉÌÉ --relocate"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "ÏÐÃÉÉ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ "
 "ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "ÏÐÃÉÀ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ÉÚ ÏÐÃÉÊ --excludedocs ÉÌÉ --includedocs"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "ÏÐÃÉÑ --allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "ÏÐÃÉÑ --justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1015,7 +1015,7 @@ msgstr ""
 "ÏÐÃÉÑ --notriggers ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -1023,7 +1023,7 @@ msgstr ""
 "ÏÐÃÉÑ --nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÏ×"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1031,7 +1031,7 @@ msgstr ""
 "ÏÐÃÉÑ --test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ "
 "ÐÁËÅÔÁ"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1039,100 +1039,100 @@ msgstr ""
 "ÏÐÃÉÑ --root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, "
 "ÚÁÐÒÏÓÁÈ ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 "ÏÐÃÉÑ --oldpackage ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "ÏÐÃÉÑ --nopgp ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "ÏÐÃÉÑ --nogpg ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "ÏÐÃÉÑ --nomd5 ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "pgp ÎÅ ÎÁÊÄÅÎ: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr "÷×ÅÄÉÔÅ ÐÁÒÏÌØ: "
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "îÅ×ÅÒÎÙÊ ÐÁÒÏÌØ\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "ðÁÒÏÌØ ÐÒÉÎÑÔ.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "ÏÐÃÉÑ --sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags "
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÒÏ×ÅÒËÉ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "× ÚÁÐÒÏÓÅ ËÏ ×ÓÅÍ ÐÁËÅÔÁÍ ÚÁÄÁÎÙ ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr "× ÚÁÐÒÏÓÅ ×ÅÒÉÆÉËÁÃÉÉ ×ÓÅÈ ÐÁËÅÔÏ× ÚÁÄÁÎÙ ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ"
 
@@ -1446,126 +1446,131 @@ msgstr "
 msgid "show the trigger scriptlets contained in the package"
 msgstr "ÐÏËÁÚÁÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÙ, ÓÏÄÅÒÖÁÝÉÅÓÑ × ÐÁËÅÔÅ"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ×"
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr "    --install <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr "    -i <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr "      --excludepath <ÐÕÔØ>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ËÁËÉÈ-ÌÉÂÏ ÕÓÔÁÎÏ×ÏÞÎÙÈ ÓËÒÉÐÔÏ×"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÏ×, ×Ú×ÅÄÅÎÎÙÈ ÎÁ ÜÔÏÔ ÐÁËÅÔ"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr "      --prefix <ËÁÔÁÌÏÇ>  "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <oldpath>=<newpath>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr "    --upgrade <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr "    -U <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr "    --erase <ÐÁËÅÔ>  "
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<stage> <spec>      "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr "    -t<stage> <tarball>   "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr "ÓÏÚÄÁÔØ ÔÏÌØËÏ src rpm"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr "     --buildroot <ËÁÔÁÌÏÇ>"
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr "     --target=<ÐÌÁÔÆÏÒÍÁ>+"
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr "   --rebuild <src_pkg>    "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr "   --recompile <src_pkg>  "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr "   --resign <ÐÁËÅÔ>+      "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr "   --addsign <pkg>+       "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr "   --checksig <pkg>+"
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr "   -K <pkg>+             "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr "ÓÏÚÄÁÔØ ÂÁÚÕ ÄÁÎÎÙÈ (ÎÅ ÏÂÑÚÁÔÅÌØÎÏ)"
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr "ÐÅÒÅÉÎÄÅËÓÉÒÏ×ÁÔØ ÂÁÚÕ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "÷ÍÅÓÔÏ ÎÉÈ ÉÓÐÏÌØÚÕÊÔÅ -e ÉÌÉ --erase.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "ÏÐÃÉÑ --dbpath ÚÁÄÁÎÁ ÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 "ÏÐÃÉÑ --justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "ÎÅ ÚÁÄÁΠspec-ÆÁÊÌ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
@@ -2285,51 +2290,55 @@ msgstr "
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(ÏÛÉÂËÁ 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "îÅ×ÅÒÎÙÊ magic"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÆÁÊÌÁ"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
@@ -2565,26 +2574,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(ÎÅ ÞÉÓÌÏ)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÒÁÚÍÅÒÁ fugger(??): %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å"
@@ -2594,7 +2603,7 @@ msgstr "
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE count must be 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
@@ -2665,108 +2674,108 @@ msgstr "
 msgid "(unknown type)"
 msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "ÚÎÁÞÅÎÉÅ %%instchangelog × ÍÁËÒÏÆÁÊÌÅ ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ, Á ÏÎÏ ÎÅÔ..."
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "ÎÅ ÍÏÇÕ ÐÉÓÁÔØ × %s"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "ÆÁÊÌ spec ×: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅΠÂÉÎÁÒÎÙÊ"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁΠËÁË %s"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅΠËÁË %s"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
 
@@ -3004,11 +3013,16 @@ msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s-%s-%s ÎÕÖÎÏ %ld%c ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
 #: lib/problems.c:151
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s-%s-%s ÎÕÖÎÏ %ld%c ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
+
+#: lib/problems.c:158
 #, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s-%s-%s"
@@ -3751,27 +3765,27 @@ msgstr "
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "ÉÓËÌÀÞÁÀ %s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
@@ -3791,177 +3805,177 @@ msgstr "
 msgid "removal of %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÇÒÕÐÐ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "õÄÁÌÏÓØ"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr "îÅ×ÅÒÎÙÊ ÏÔ×ÅÔ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "ôÁÊÍÁÕÔ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ IP-ÁÄÒÅÓ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÉÍÑ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr "îÅ ÍÏÇÕ ÓÏÅÄÉÎÉÔØÓÑ Ó ÓÅÒ×ÅÒÏÍ"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ Ó ÓÅÒ×ÅÒÏÍ"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÌÏËÁÌØÎÙÊ ÆÁÊÌ"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "ïÛÉÂËÁ ÐÒÉ ÐÅÒÅ×ÏÄÅ ÕÄÁÌÅÎÎÏÇÏ ÓÅÒ×ÅÒÁ × ÐÁÓÓÉ×ÎÙÊ ÒÅÖÉÍ"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅΠÎÁ ÓÅÒ×ÅÒÅ"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "ïÔÍÅÎÁ × ÐÒÏÃÅÓÓÅ"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== ÁËÔÉ×Π%d ÐÕÓÔ. %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(ÐÕÓÔÏ)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(ÐÕÓÔÏ)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÏÅ ÔÅÌÏ"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÙÅ ÏÐÃÉÉ"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÐÕÓÔÏÅ ÔÅÌÏ"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "íÁËÒÏÓ %%%s ÒÁÓËÒÙÔØ ÎÅ ÕÄÁÌÏÓØ"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "íÁËÒÏÓ %%%s (%s) ÎÅ ÂÙÌ ÉÓÐÏÌØÚÏ×ÁΠÎÉÖÅ ÕÒÏ×ÎÑ %d"
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÏÐÃÉÑ %c × %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "çÌÕÂÉÎÁ ÒÅËÕÒÓÉÉ(%d) ÂÏÌØÛÅ max(%d)"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "îÅÚÁËÒÙÔÁÑ %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr "%% Ó ÐÏÓÌÅÄÕÀÝÉÍ ÎÅÒÁÚÂÉÒÁÅÍÙÍ ÍÁËÒÏÓÏÍ"
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "íÁËÒÏÓ %s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "æÁÊÌ %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "æÁÊÌ %s ÍÅÎØÛÅ %d ÂÁÊÔ"
@@ -4011,22 +4025,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "ðÁÒÏÌØ ÄÌÑ %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "ÏÛÉÂËÁ: %sport ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "url port ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s\n"
index bd1c285..70ec326 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -550,19 +550,19 @@ msgstr ""
 "overi» in¹taláciu balíka s pou¾itím rovnakých volieb ¹pecifikácia balíka ako "
 "pre -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "neoverova» md5 kontrolné súèty súborov"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "neoverova» atribúty súborov"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "vypísa» príznaky, ktoré mô¾u by» pou¾ité vo formáte otázky"
 
@@ -574,7 +574,7 @@ msgstr "    --install <s
 msgid "    -i <packagefile>      "
 msgstr "    -i <súbor_balíku>      "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "in¹talova» balík"
 
@@ -590,11 +590,11 @@ msgstr "vynecha
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "balík %s nie je nain¹talovaný\n"
@@ -603,49 +603,49 @@ msgstr "bal
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <adresár>  "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "nein¹talova» dokumentáciu"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skratka pre --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "in¹talova» v¹etky súbory vrátane konfiguraèných súborov, ktoré by inak mohli "
 "by» vynechané"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "neoverova» architektúru balíka"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "neoverova» operaèný systém balíka"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "in¹talova» dokumentáciu"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "aktualizova» databázu bez zmeny súborového systému"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
 
@@ -653,23 +653,23 @@ msgstr "nemeni
 msgid "don't execute any installation scripts"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "vypisova» percentá poèas in¹talácie balíka"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "prein¹talova», pokiaµ u¾ balík existuje"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
 
@@ -681,11 +681,11 @@ msgstr "    --upgrade <s
 msgid "    -U <packagefile>      "
 msgstr "    -U <súbor_balíka>     "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "aktualizova» balík (rovnaké voµby ako --install, a k tomu)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -697,11 +697,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <package>"
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "odin¹talova» balík"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -709,7 +709,7 @@ msgstr ""
 "odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
 "¹pecifikuje viac ako jeden balík)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
@@ -721,54 +721,54 @@ msgstr "    -b<etapa> <spec>      "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etapa> <tar_súbor> "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "zostavi» balík, kde <etapa> je jedna z:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "príprava (rozbali» zdrojové súbory a aplikova» záplaty)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrola zoznamu (vykona» niektoré zbe¾né kontroly sekcie %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilácia (príprava a kompilácia)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "in¹talácia (príprava, kompilácia, in¹talácia)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binárny balík (príprava, kompilácia, in¹talácia, zabalenie)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "binárny a zdrojový balík (príprava, kompilácia, in¹talácia, zabalenie)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "preskoèi» priamo k urèenej etape (iba pre c, i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "po ukonèení odstráni» adresár, v ktorom sa balík zostavoval"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "vytvori» PGP/GPG podpis"
 
@@ -776,7 +776,7 @@ msgstr "vytvori
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <adresár>   "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "pou¾i» <adresár> pre zostavenie balíka"
 
@@ -784,11 +784,11 @@ msgstr "pou
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "vytvori» balíky pre ciele platforma1...platformaN."
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "nevykona» ¾iadne etapy"
 
@@ -804,7 +804,7 @@ msgstr "nastavi
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <zdroj_balík>"
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -816,7 +816,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <src_pkg> "
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "ako --rebuild, ale nezostavi» ¾iadny balík"
 
@@ -824,7 +824,7 @@ msgstr "ako --rebuild, ale nezostavi
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <balík>+     "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
@@ -832,7 +832,7 @@ msgstr "podp
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <balík>+    "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "prida» podpis balíku"
 
@@ -846,19 +846,19 @@ msgstr "    --checksig <bal
 msgid "    -K <pkg>+             "
 msgstr "    --resign <balík>+     "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "overi» podpis balíka"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "vynecha» akékoµvek PGP podpisy"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "vynecha» akékoµvek GPG podpisy"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "vynecha» akékoµvek MD5 podpisy"
 
@@ -870,7 +870,7 @@ msgstr "uisti
 msgid "rebuild database from existing database"
 msgstr "znovu vytvori» databázu z existujúcej"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -878,7 +878,7 @@ msgstr ""
 "nastavi» prístupové práva súborov podµa údajov v databáze balíkov s pou¾itím "
 "rovnakých volieb ¹pecifikácia balíka ako pre -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -887,37 +887,37 @@ msgstr ""
 "pou¾itím rovnakých volieb ¹pecifikácia balíka ako pre -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u a --uninstall sú zastaralé a u¾ nefungujú.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "presunutia musia zaèína» znakom /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "presunutia musia obsahova» znak ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "presunutia musia ma» za znakom = znak /"
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musia zaèína» znakom /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -925,110 +925,110 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "naraz mô¾e by» vykonaný jeden typ otázky alebo overenia"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, 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é"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "súbory mô¾u by» presunuté iba poèas inètalácie balíka"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "mo¾e by» pou¾itá iba jedna z volieb --prefix a --relocate"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 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"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 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"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pre --prefix musia zaèína» znakom /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 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"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "mô¾e by» pou¾itá iba jedna voµba z --excludedocs a --includedocs"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mô¾e by» pou¾ité iba poèas odstránenia balíkov"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 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"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1044,7 +1044,7 @@ msgstr ""
 "--notriggers mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo "
 "overenia balíka"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1053,7 +1053,7 @@ msgstr ""
 "--nodeps mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo overenia "
 "balíka"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1061,7 +1061,7 @@ msgstr ""
 "--test mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo zostavenia "
 "balíka"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1069,98 +1069,98 @@ 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"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pre --root (-r) musia zaèína» znakom /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage mô¾e by» pou¾íté iba poèas aktualizácie"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp mô¾e by» pou¾íté iba poèas overenia podpisu"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg mô¾e by» pou¾íté iba poèas overenia podpisu"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 mô¾e by» pou¾íté iba poèas overenia podpisu alebo balíka"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "nie je mo¾né pracova» so súborom %s\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "pgp nebolo nájdené: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Kontrola hesla zlyhala\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Heslo je v poriadku.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "neoèakávané argumenty pre --querytags"
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "neboli zadané ¾iadne balíky pre overenie podpisu"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "neboli zadané ¾iadne balíky na podpis"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "neboli zadané ¾iadne balíky pre odin¹talovanie"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "boli zadané nadbytoèné argumenty otázky pre v¹etky balíky"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "boli zadané nadbytoèné argumenty otázky pre v¹etky balíky"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "neboli zadané ¾iadne argumenty pre overenie"
 
@@ -1501,149 +1501,154 @@ msgstr "vyp
 msgid "show the trigger scriptlets contained in the package"
 msgstr "zobrazi» spú¹»acie skripty obsiahnuté v balíku"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "nevykona» ¾iadne etapy"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "    --install <súbor_balíku>"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -i <súbor_balíku>      "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "      --excludepath <cesta>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "vynecha» súbory v ceste <cesta>"
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "      --prefix <adresár>  "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "    --upgrade <súbor_balíka>"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -U <súbor_balíka>     "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "    --erase <package>"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<etapa> <spec>      "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -t<etapa> <tar_súbor> "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "balík nemá meno"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "      --buildroot <adresár>   "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "      --target=<platforma>+"
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    --rebuild <zdroj_balík>"
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    --recompile <src_pkg> "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    --resign <balík>+     "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    --addsign <balík>+    "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    --checksig <balík>+   "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    --resign <balík>+     "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "znovu vytvori» databázu z existujúcej"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers 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:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
 
@@ -2367,51 +2372,55 @@ msgstr "riadok %d: Chybn
 msgid "line %d: Bad %s number: %s\n"
 msgstr "riadok %d: Chybné %s èíslo: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "premenovanie %s na %s zlyhalo: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "Chybné magické èíslo"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "Chybná/neèitateµná hlavièka"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "Priveµká hlavièka"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr "Neznámy typ súboru"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr "Interná chyba"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr " zlyhalo - "
 
@@ -2647,26 +2656,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(nie je èíslo)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() nevrátil veµkos» fuggeru: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "nepodarilo sa zisti» stav %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
@@ -2676,7 +2685,7 @@ msgstr "s
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
@@ -2747,108 +2756,108 @@ msgstr "| o
 msgid "(unknown type)"
 msgstr "(neznámy typ)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   súbor: akcia %s: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "hodnota %%instchangelog v makro-súbore by mala by» èíselná, ale nie je"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "in¹taluje sa zdrojový balík\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "zdroje v: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-súbor v: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "premenovanie %s na %s zlyhalo: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varovanie: %s vytvorené ako %s"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
@@ -3107,10 +3116,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3855,27 +3869,27 @@ msgstr "Mus
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
@@ -3895,182 +3909,182 @@ msgstr "rmdir %s zlyhalo: %s"
 msgid "removal of %s failed: %s"
 msgstr "odstránenie %s zlyhalo: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "budú sa odstraòova» súbory test = %d\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "v balíku chýba tak meno pou¾ívateµa, ako aj zoznamy identifikácií (nemalo by "
 "sa nikdy sta»)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa "
 "nikdy sta»)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "Úspech"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr "Chybná odpoveï servera"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr "Chyba vstupu/výstupu servera"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "Prekroèenie èasového limitu servera"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr "Nie je mo¾né vyhµada» adresu servera"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr "Nie je mo¾né vyhµada» názov servera"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr "Pripojenie k serveru zlyhalo"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr "Vytvorenie dátového spojenia k serveru zlyhalo"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "Chyba vstupu/výstupu lokálneho súboru"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Chyba pri nastavení vzdialeného servera do pasívneho re¾imu"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Súbor sa na serveri nenachádza"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "Zru¹enie prebieha"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "Neznáma alebo neoèakávaná chyba"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "prihlasuje sa na %s ako %s, heslo %s\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktívnych %d prázdnych %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(prázdne)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(prázdne)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s obsahuje neukonèené telo"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s obsahuje chybný názov (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s obsahuje neukonèené voµby"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s obsahuje prázdne telo"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "Makro %%%s sa nepodarilo expandova»"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s obsahuje chybný názov (%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nebolo pou¾ité pod úrovòou %d "
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznáma voµba %c v %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "Håbka rekurzie (%d) väè¹ia ako maximálna (%d)"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Neukonèené %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "balík %%%.*s nebol nájdený, vynecháva sa"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "Preplnenie cieµovej vyrovnávacej pamäti"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Súbor %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Súbor %s je men¹í ako %d bajtov"
@@ -4120,22 +4134,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "Heslo pre %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "chyba: %sport musí by» èíslo\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "url port musí by» èíslo\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "nepodarilo sa vytvori» %s\n"
index 4027590..69137c2 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.100 2000/09/26 18:04:17 jbj Exp $
+# $Id: sl.po,v 1.101 2000/10/24 13:46:55 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-02-17 22:25+01:00\n"
 "Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -544,19 +544,19 @@ msgid ""
 "options as -q"
 msgstr "namestitev paketa preverimo z enakimi izbirnimi doloèili kot -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "brez preverjanja nadzorne vsote md5"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "brez preverjanja prilastkov datotek"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "izpi¹i znaèke, ki pridejo v po¹tev pri poizvedbi"
 
@@ -568,7 +568,7 @@ msgstr "    --install <paket>      "
 msgid "    -i <packagefile>      "
 msgstr "    -i <paket>            "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "namestimo paket"
 
@@ -584,11 +584,11 @@ msgstr "presko
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <starapot>=<novapot>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "datoteke iz stare poti prestavimo v novo"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "poti %s ni mo¾no premakniti za paket %s-%s-%s"
@@ -597,48 +597,48 @@ msgstr "poti %s ni mo
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <imenik>   "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "èe je dovoljeno, paket prestavimo v <imenik>"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "brez namestitve dokumentacije"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "okraj¹ava za --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "namestitev vseh datotek, vkljuèno z nastavitvenimi, ki so sicer izpu¹èene"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "brez preverjanja arhitekture paketa"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "brez preverjanja prostora na disku pred name¹èanjem"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "brez preverjanja operacijskega sistema paketa"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "namesti dokumentacijo"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti"
@@ -647,23 +647,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "z izpisom procentov med namestitvijo"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èenih datotek"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "ponovno namesti, èe paket ¾e obstaja"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "ne namesti, a ugotovi, èe bi delovalo"
 
@@ -675,11 +675,11 @@ msgstr "    --upgrade <paket>      "
 msgid "    -U <packagefile>      "
 msgstr "    -U <paket>            "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "nadgradi paket (iste izbire kot --install in ¹e:)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -691,11 +691,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <paket>   "
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "zbri¹i (odstrani) paket"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -703,7 +703,7 @@ msgstr ""
 "odstrani vse pakete, ki vsebujejo vzorec <paket> (sicer izidemo z izidom o "
 "napaki, èe <paket> doloèa veè paketov)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "brez izvajanja katerihkoli skriptov paketa"
 
@@ -715,55 +715,55 @@ msgstr "    -b<stopnja> <spec>    "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<stopnja> <arhiv tar>"
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "zgradi paket do navedene stopnje, ki je ena od:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "priprava (razpakiraj izvorno kodo in uporabi krparije)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "preverjanje (povr¹no preverjanje %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "prevod (priprava in prevajanje)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "namestitev (pripava, prevajanje, namestitev)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "prevedeni paket (priprava, prevajanje, namestitev, izgradnja paketa)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "prevedeni in izvorni paket (priprava, prevajanje, namestitev, izgradnja "
 "paketa)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "preskoèimo naravnost na doloèeno stopnjo (samo za c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "po zakljuèku odstranimo delovni imenik"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr "po zakljuèku odstranimo izvorno kodo"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "po zakljuèku odstranimo datoteko spec"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "izdelava podpisa PGP/GPG"
 
@@ -771,7 +771,7 @@ msgstr "izdelava podpisa PGP/GPG"
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <imenik>"
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "<imenik> naj bo korenski imenik pri izgradnji"
 
@@ -779,11 +779,11 @@ msgstr "<imenik> naj bo korenski imenik pri izgradnji"
 msgid "      --target=<platform>+"
 msgstr "      --target=<s.okolje>+"
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "izgradi pakete za navedena ciljna strojna okolja"
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
@@ -799,7 +799,7 @@ msgstr "najve
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <izv.paket> "
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -811,7 +811,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <izv.pak.>"
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "kot --rebuild, a brez izgradnje kakr¹negakoli paketa"
 
@@ -819,7 +819,7 @@ msgstr "kot --rebuild, a brez izgradnje kakr
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <paket>+     "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "podpi¹i paket(e) (trenutni podpis zavr¾emo)"
 
@@ -827,7 +827,7 @@ msgstr "podpi
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <paket>+    "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "dodaj podpis k paketu(-om)"
 
@@ -841,19 +841,19 @@ msgstr "    --checksig <paket>+   "
 msgid "    -K <pkg>+             "
 msgstr "    --resign <paket>+     "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "preveri podpis paketa(-ov)"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "preskoèi vse podpise PGP"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "preskoèi vse podpise GPG"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "preskoèi vse podpise MD5"
 
@@ -865,7 +865,7 @@ msgstr "preveri, 
 msgid "rebuild database from existing database"
 msgstr "ponovno izgradi zbirko iz obstojeèe"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -873,7 +873,7 @@ msgstr ""
 "dovoljenja za datoteke postavimo na vrednosti v paketu, z istimi izbirnimi "
 "doloèilili kot pri -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -882,37 +882,37 @@ msgstr ""
 "izbirnimi doloèili kot pri -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "samo en glavni naèin sme biti izbran"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u in --uninstall nista veè podprti izbiri in ne delujeta veè.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Namesto njiju uporabite -e ali --erase.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "prestavitve se morajo zaèeti z /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "prestavitve morajo vsebovati ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "prestavitve morajo imeti /, ki sledi ="
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "poti, ki jih preskoèimo, se morajo zaèeti z /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -920,106 +920,106 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Interna napake pri obdelavi argumentov (%d)\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo en tip poizvedbe/preverjanja naenkrat je mo¾en"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr "neprièakovane zastavice pri poizvedbi"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr "neprièakovana oblika poizvedbe"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "neprièakovan izvor poizvedbe"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "datoteke lahko prestavimo samo pri namestitvi paketa"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "izbiri --prefix in --relocate se izkljuèujeta"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "izbiri --relocate in --excludepath lahko uporabimo samo pri namestitvi"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix smemo uporabiti samo pri namestitvi"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti izbire --prefix se morajo zaèeti z /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "izbiri --excludedocs in --includedocs se izkljuèujeta"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches smemo podati samo ob odstranitvi paketa"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles smemo podati samo ob namestitvi paketa"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb smemo podati samo ob namestitvi ali odstranitvi paketa"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1035,7 +1035,7 @@ msgstr ""
 "--notriggers smemo podati samo ob namestitvi, odstranitvi ali preverjanju "
 "paketa"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -1043,14 +1043,14 @@ msgstr ""
 "--nodeps smemo podati samo ob izgradnji, vnovièni izgradnji, prevajanju, "
 "namestitvi, odstranitvi ali preverjanju paketa"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test smemo podati samo ob namestitvi, odstranitvi ali izgradnji paketa"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1058,97 +1058,97 @@ msgstr ""
 "--root (-r) smemo podati samo ob namestitvi, odstranitvi poizvedbi ali "
 "vnovièni izgradnji paketa"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti izbire --root (-r) se morajo zaèeti z /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage smemo podati samo ob nadgradnji"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp smemo podati samo ob preverjanju podpisa"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg smemo podati samo ob preverjanju podpisa"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 smemo podati samo ob preverjanju podpisa ali paketa"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr "datoteka za podpis manjka\n"
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "dostop do datoteke %s ni mo¾en\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "pgp manjka: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr "Vnesite pristopno geslo: "
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Preverjanje pristopnega gesla neuspe¹no\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Pristopno geslo je pravo.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Neveljaven %%_signature v makrodatoteki.\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign smemo podati samo ob izgradnji paketa"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "exec neuspe¹en\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "neprièakovani argumenti za --querytags "
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "paketi za preverjanje podpisa niso navedeni"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "paketi za podpisovanje niso navedeni"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "paketi za odstranitev niso navedeni"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "paketi za namestitev niso navedeni"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "pri poizvedbi paketov so podani odveèni argumenti"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "argumenti za poizvedbo niso podani"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr "pri preverjanju paketov so podani odveèni argumenti"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "argumenti za preverjanje niso podani"
 
@@ -1488,149 +1488,154 @@ msgstr "izpis razli
 msgid "show the trigger scriptlets contained in the package"
 msgstr "prikaz pro¾ilnih skriptov, ki jih paket vsebuje"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "brez izvajanja katerekoli stopen izgradnje"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "    --install <paket>      "
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -i <paket>            "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "      --excludepath <pot> "
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "preskoèimo datoteke v navedeni poti"
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "      --prefix <imenik>   "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <starapot>=<novapot>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "    --upgrade <paket>      "
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -U <paket>            "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "    --erase <paket>   "
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<stopnja> <spec>    "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -t<stopnja> <arhiv tar>"
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "paket nima imena"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "      --buildroot <imenik>"
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "      --target=<s.okolje>+"
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    --rebuild <izv.paket> "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    --recompile <izv.pak.>"
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    --resign <paket>+     "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    --addsign <paket>+    "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    --checksig <paket>+   "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    --resign <paket>+     "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "ponovno izgradi zbirko iz obstojeèe"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Namesto njiju uporabite -e ali --erase.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "podani --dbpath ne uporablja podatkovne zbirke"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr "--justdb smemo podati samo ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "paketi za vnovièno izgradnjo niso navedeni"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "datoteka spec za izgradnjo manjka"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "arhiv tar za izgradnjo manjka"
 
@@ -2351,51 +2356,55 @@ msgstr "vrstica %d: Okvarjeno 
 msgid "line %d: Bad %s number: %s\n"
 msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "ni mo¾no preimenovati %s v %s: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "ni mo¾no zbrisati %s: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(napaka 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "Okvarjeno magièno ¹tevilo"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "Okvarjena/neberljiva glava"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "Glava predolga"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr "Neznan tip datoteke"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr "Trda povezava manjka"
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr "Interna napaka"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr " neuspe¹no - "
 
@@ -2637,26 +2646,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(ni ¹tevilo)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() ni uspe¹no vrnila velikosti fugger: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "status %s ni na voljo: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr "zbiramo seznam priklopljenih datoteènih sistemov.\n"
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "neuspe¹no odpiranje %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "datoteka %s se nahaja na neznani napravi"
@@ -2666,7 +2675,7 @@ msgstr "datoteka %s se nahaja na neznani napravi"
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
@@ -2737,108 +2746,108 @@ msgstr "| pri
 msgid "(unknown type)"
 msgstr "(neznan tip)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr " datoteka: %s akcija: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "uporabnik %s ne obstaja - uporabljamo root"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s ne obstaja - uporabljamo root"
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "vrednost %%instchangelog v makrodatoteki bi morala biti ¹tevilo, pa ni"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "razpakiranje arhiva neuspe¹no%s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr " pri datoteki "
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "name¹èanje izvornega paketa\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "ni mo¾no ustvariti izvornega imenika %s"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "ni mo¾no pisanje na %s"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "izvori v: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "ni mo¾no ustvariti imenika z doloèili spec %s"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "datoteka spec v: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s v %s neuspe¹no: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "prièakovan izvorni paket, najden binarni"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "ustavljamo namestitev ker teèemo kot --test\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "opozorilo: %s ustvarjen kot %s"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n"
 
@@ -3093,11 +3102,16 @@ msgid "installing package %s-%s-%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:151
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s"
+
+#: lib/problems.c:158
 #, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
@@ -3838,27 +3852,27 @@ msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "izkljuèujemo datoteko %s%s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèujemo imenik %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "prestavljamo %s v %s\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "prestavljamo imenik %s v %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
@@ -3878,179 +3892,179 @@ msgstr "odstranitev imenika %s neuspe
 msgid "removal of %s failed: %s"
 msgstr "odstranitev %s neuspe¹na: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "datoteke bomo odstranili, test = %d\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "poganjamo poodnamestitvene skripte (èe obstajajo)\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "v paketu manjka tako seznam uporabnikov kot identitet (to se ne more zgoditi)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "v paketu manjka tako seznam skupin kot identitet (to se ne more zgoditi)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "Uspe¹no"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr "Okvarjen odziv stre¾nika"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr "V/I napaka na stre¾niku"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "Potekel èas na stre¾niku"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr "Naslov stre¾nika ni ugotovljiv"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr "Ime stre¾nika ni ugotovljivo"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr "Neuspe¹en poskus prikljuèitve na stre¾nik"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr "Neuspe¹na vzpostavitev podatkovne povezave s stre¾nikom"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "V/I napaka na lokalni datoteki"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Napaka pri nastavitvi oddaljenega stre¾nika v pasivni naèin"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Datoteke ni mo¾no najti na stre¾niku"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "Prekinitev v teku"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "Neznana ali neprièakovana napaka"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "prijava na %s kot %s, geslo %s\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktivni %d prazni %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(prazni)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(prazni)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s vsebuje nezakljuèeno telo"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s vsebuje nedovoljeno ime (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s vsebuje nezakljuèene izbire"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s vsebuje prazno telo"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "Makro %%%s se ne raz¹iri"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s vsebuje nedovoljeno ime (%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) ni bil uporabljen pod ravnijo %d"
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznana izbira %c v %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "Globina rekurzije (%d) veèja od maksimalne (%d)"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Nezakljuèeni %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr "Oznaki %% sledi nerazèlenljiv makro"
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Makro %%%.*s ni najden, preskoèimo"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "Ciljni medpomnilnik prekoraèen"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Datoteka %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Datoteka %s je kraj¹a od %d bajtov"
@@ -4100,22 +4114,22 @@ msgstr "opozorilo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgid "Password for %s@%s: "
 msgstr "Geslo za %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "napaka: vrata %s morajo biti ¹tevilka\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "vrata URL morajo biti ¹tevilka\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "neuspe¹no ustvarjanje %s: %s\n"
index fe2a493..2cf9574 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 "From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@@ -536,19 +536,19 @@ msgid ""
 msgstr ""
 "proveri instalaciju paketa koristeæi iste opcije za odreðenje paketa kao i -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "nemoj proveravati md5 kontrolne sume datoteke"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "nemoj proveravati atribute datoteke"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "ispi¹i tag-ove koji mogu biti kori¹æeni u formatu upita"
 
@@ -562,7 +562,7 @@ msgstr "instaliraj paket"
 msgid "    -i <packagefile>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "instaliraj paket"
 
@@ -580,11 +580,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "paket %s nije instaliran\n"
@@ -593,48 +593,48 @@ msgstr "paket %s nije instaliran\n"
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "nemoj da instalira¹ dokumentaciju"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skraæenica za --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "pi¹i he¹-znak (#) kako odmièe instaliranje paketa (dobro doðe sa -v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaliraj sve datoteke, èak i konfiguracije koje bi inaèe bile preskoèene"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "instaliraj dokumentaciju"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
@@ -643,23 +643,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "pi¹i procente instalacije paketa"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "ponovo instaliraj ako je paket veæ prisutan"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
 
@@ -672,11 +672,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "a¾uriraj paket (iste opcije kao --install, plus)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -687,11 +687,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (deinstaliraj) paket"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -699,7 +699,7 @@ msgstr ""
 "ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
 "<paket> oznaèava vi¹e paketa)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
@@ -712,54 +712,54 @@ msgstr "    -b<faza> <spec>\t "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "napravi paket, gde je <faza> jedna od:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "priprema (raspakuj izvorne datoteke i primeni zakrpe)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "provera liste (mala provera na %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilacija (priprema i kompilacija)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "instalacija (priprema, kompilacija, instalacija)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src paket (priprema, kompilacija, instalacija, pakovanje)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "idi pravo do odreðene faze (samo za k,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "ukloni stablo direktorijuma po zavr¹etku"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "napravi PGP potpis"
@@ -769,7 +769,7 @@ msgstr "napravi PGP potpis"
 msgid "      --buildroot <dir>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "koristi <dir> kao korenski katalog kod kreiranja"
 
@@ -777,11 +777,11 @@ msgstr "koristi <dir> kao korenski katalog kod kreiranja"
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
@@ -799,7 +799,7 @@ msgstr "postavi vremensku proveru na S sekundi (0 je deaktivira)"
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -811,7 +811,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "kao i --rebuild, samo nemoj praviti nikakav paket"
 
@@ -820,7 +820,7 @@ msgstr "kao i --rebuild, samo nemoj praviti nikakav paket"
 msgid "    --resign <pkg>+       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
@@ -829,7 +829,7 @@ msgstr "potpi
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "dodaj potpis u paket"
 
@@ -843,20 +843,20 @@ msgstr "    -b<faza> <spec>\t "
 msgid "    -K <pkg>+             "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "proveri potpis u paketu"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "preskoèi sve PGP potpise"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "preskoèi sve PGP potpise"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "preskoèi sve MD5 potpise"
 
@@ -868,7 +868,7 @@ msgstr "uveri se da postoji ispravna baza podataka"
 msgid "rebuild database from existing database"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -876,7 +876,7 @@ msgstr ""
 "postavi dozvole datoteke kao one u bazi podataka paketa koristeæi iste "
 "opcije za odreðenje datoteka kao i -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -885,38 +885,38 @@ msgstr ""
 "iste opcije za odreðenje datoteka kao i -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "samo jedan glavni re¾im mo¾e biti naveden"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u i --uninstall nisu vi¹e podr¾ani i ne rade vi¹e.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Koristite -e ili --erase.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "preme¹tanja moraju imati znak ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "preme¹tanja moraju imati / praæeno sa ="
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -924,110 +924,110 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo jedan tip upita/provere mo¾e biti uraðen odjednom"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèekivan izvor upita"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèekivan izvor upita"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "neoèekivan izvor upita"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "samo instalacija i a¾uriranje mogu biti forsirane"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate mo¾ete koristiti samo kad instalirate novi paket"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti za --prefix moraju poèeti znakom /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1043,7 +1043,7 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1051,14 +1051,14 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¾ete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1066,102 +1066,102 @@ msgstr ""
 "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili "
 "rekreiranja baze podataka"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti za --root (-r) moraju poèeti znakom /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage se mo¾e koristiti samo tokom a¾uriranja paketa"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp se mo¾e koristiti samo prilikom provere potpisa"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp se mo¾e koristiti samo prilikom provere potpisa"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nopgp se mo¾e koristiti samo kod provere potpisa ili paketa"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Neuspela provera lozinke\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Lozinka je dobra.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekivani argumenti za --querytags"
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "nedostaje paket za proveru potpisa"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "nedostaje paket za potpisivanje"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "neodstaje paket za deinstalaciju"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "suvi¹ni argumenti su navedeni za upit nad svim paketima"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "nedostaju argumenti za upit"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "suvi¹ni argumenti su navedeni za upit nad svim paketima"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "nedostaju argumenti za proveru"
 
@@ -1489,148 +1489,153 @@ msgstr "ispi
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "nemoj izvr¹iti nijednu fazu"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "instaliraj paket"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "instaliraj paket"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "instaliraj paket"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "paket nema imena"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Koristite -e ili --erase.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "nedosataje paket za rekreiranje"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "nedostaje specifikacije za kreiranje"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "nedostaju 'tar' datoteke za kreiranje"
 
@@ -2357,53 +2362,57 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "gre¹ka: "
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(nepoznat tip)"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Internal error"
 msgstr "fatalna gre¹ka: "
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "PGP omanuo"
@@ -2640,26 +2649,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(nije broj)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() nije vratio 'fugger' velièinu: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2669,7 +2678,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2742,110 +2751,110 @@ msgstr "| o
 msgid "(unknown type)"
 msgstr "(nepoznat tip)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instaliraj paket"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s u %s nije uspelo: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3113,11 +3122,16 @@ msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
 #: lib/problems.c:151
+#, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
 #, fuzzy, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3874,27 +3888,27 @@ msgstr "Morate podesiti \"pgp_name:\" u va
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3914,187 +3928,187 @@ msgstr "neuspela komanda rmdir %s: %s"
 msgid "removal of %s failed: %s"
 msgstr "uklanjanje %s nije uspelo: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instaliraj paket"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 #, fuzzy
 msgid "Bad server response"
 msgstr "Lo¹ odgovor FTP servera"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 #, fuzzy
 msgid "Server IO error"
 msgstr "Ulazno/izlazna FTP gre¹ka"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 #, fuzzy
 msgid "Server timeout"
 msgstr "Tajm-aut FTP servera"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "Ne mogu da odredim host adresu FTP servera"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "Ne mogu da odredim ime FTP hosta"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "Ne mogu da se pove¾em sa FTP serverom"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "Ulazno/izlazna gre¹ka kod lokalne datoteke"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Gre¹ka kod stavljanja udaljenog servera u pasivni re¾im"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "Neoèekivana ili nepoznata FTP gre¹ka"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paket %s nije naðen u %s"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -4144,23 +4158,23 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "Lozinka za %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "neuspelo kreiranje %s\n"
index 4e19be0..398dcac 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-0400\n"
 "PO-Revision-Date: 2000-08-07 16:53+0200\n"
 "Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -513,19 +513,19 @@ msgid ""
 "options as -q"
 msgstr "verifiera ett pakets installation med samma urvalsflaggor som till -q"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "verifiera inte md5-kontrollsummor"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "verifiera inte filattribut"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "visa taggar som kan användas i frågeformat"
 
@@ -537,7 +537,7 @@ msgstr "    --install <paketfil>"
 msgid "    -i <packagefile>      "
 msgstr "    -i <paketfil>         "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "installera paket"
 
@@ -553,11 +553,11 @@ msgstr "hoppa 
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <frånskv>=<tillskv>"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "flytta filer från <frånskv> till <tillskv>"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr "relokera filer i ej relokerbart paket"
 
@@ -565,50 +565,50 @@ msgstr "relokera filer i ej relokerbart paket"
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <katalog>  "
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "flytta paketet till <katalog>, om flyttbart"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "installera inte dokumentation"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "kortform för --replacepkgs --replacefiles"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "skriv ut brädgårdar allt eftersom paketet installeras (bra tillsammans med "
 "-v)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installera alla filer, även konfigurationer som annars kunde hoppats över"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "verifiera inte paketarkitektur"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr "kontrollera inte diskutrymme före installation"
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "verifiera inte paketets operativsystem"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "installera dokumentation"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "uppdatera databasen, men ändra inte filsystemet"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden"
 
@@ -616,23 +616,23 @@ msgstr "flytta inte om paketinstallationen f
 msgid "don't execute any installation scripts"
 msgstr "kör inte installationsskript"
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr "kör inte utlösningsskript utlösta av detta paket"
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "skriv procent allt eftersom paketet installeras"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "installera även om paketet byter ut installerade filer"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "installera om ifall paketet redan är installerat"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "installera inte, men tala om ifall det skulle fungera eller inte"
 
@@ -644,11 +644,11 @@ msgstr "    --upgrade <paketfil>"
 msgid "    -U <packagefile>      "
 msgstr "    -U <paketfil>         "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "uppgradera paket (samma flaggor som --install, samt)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -660,11 +660,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr "    --erase <paket>"
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "ta bort (avinstallera) paket"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -672,7 +672,7 @@ msgstr ""
 "ta bort alla paket som matchar <paket> (normalt ger det ett fel om <paket> "
 "specificerar flera paket)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "kör inte paketspecifika skript"
 
@@ -684,52 +684,52 @@ msgstr "    -b<steg> <spec>       "
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<steg> <tarboll>    "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "tillverka paket, där <steg> är något av:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "förbered (packa upp källkod samt applicera patchar)"
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrollera (gör några enkla kontroller på %files)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "kompilera (förbered och kompilera)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "installera (förbered, kompilera, installera)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr "binärpaketera (förbered, kompilera, installera, paketera)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "binär- och källpaketera (förbered, kompilera, installera, paketera)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "gå direkt till angivet steg (endast för c,i)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "ta bort tillverkningsträd efteråt"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr "ta bort källkod efteråt"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr "ta bort spec-fil efteråt"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr "tillverka en PGP/GPG-signatur"
 
@@ -737,7 +737,7 @@ msgstr "tillverka en PGP/GPG-signatur"
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <kat>   "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "använd <kat> som tillverkningsrot"
 
@@ -745,11 +745,11 @@ msgstr "anv
 msgid "      --target=<platform>+"
 msgstr "      --target=<plattfrm>+"
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "tillverka paketen för målen plattfrm1...plattfrmN."
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "utför inga steg"
 
@@ -765,7 +765,7 @@ msgstr "s
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <källpaket> "
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -777,7 +777,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <källpkt> "
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "som --rebuild, men tillverka inga paket"
 
@@ -785,7 +785,7 @@ msgstr "som --rebuild, men tillverka inga paket"
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pkt>+       "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "signera ett paket (släng nuvarande signatur)"
 
@@ -793,7 +793,7 @@ msgstr "signera ett paket (sl
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pkt>+      "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "lägg till signatur till ett paket"
 
@@ -805,19 +805,19 @@ msgstr "    --checksig <pkt>+"
 msgid "    -K <pkg>+             "
 msgstr "    -K <pkt>+             "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "verifiera paketsignatur"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "hoppa över eventuella PGP-signaturer"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr "hoppa över eventuella GPG-signaturer"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "hoppa över eventuella MD5-signaturer"
 
@@ -829,7 +829,7 @@ msgstr "f
 msgid "rebuild database from existing database"
 msgstr "bygg om databasen från existerande databas"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -837,7 +837,7 @@ msgstr ""
 "sätt filrättigheterna till de i paketdatabasen med samma "
 "paketspecifikationsflaggor som -q"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -846,37 +846,37 @@ msgstr ""
 "paketspcifikationsflaggor som -q"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "enbart ett läge kan specifieras"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u och --uninstall undanbedes och fungerar inte längre.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Använd -e eller --erase istället.\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "omflyttningar måste börja med /"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "omflyttningar måste innehålla ett ="
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "omflyttningar måste ha ett / efter ="
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr "uteslutna sökvägar måste börja med /"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -884,108 +884,108 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Internt fel i argumenthantering (%d) :-(\n"
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "endast en typ av undersökning/verifiering kan utföras åt gången"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr "oväntade undersökningsflaggor"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr "oväntat undersökningsformat"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "oväntad undersökningskälla"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "enbart installation, uppgradering, rmsource och rmspec kan tvingas fram"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "filer kan relokeras endast under paketinstallation"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "enbart en av --prefix eller --relocate kan användas"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 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"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan endast användas när nya paket installeras"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "argument till --prefix måste börja med /"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan enbart användas vid paketinstallation"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paketinstallation"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paketinstallation"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan enbart användas vid paketinstallation"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan enbart användas vid paketinstallation"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan enbart användas vid paketinstallation"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "enbart en av --excludedocs och --includedocs läge kan specifieras"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan enbart användas vid paketinstallation"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan enbart användas vid paketinstallation"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan enbart användas vid paketinstallation"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan enbart användas när paket tas bort"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan enbart användas vid paketinstallation"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb kan enbart användas vid installation och avinstallation av paket"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1001,7 +1001,7 @@ msgstr ""
 "--notriggers kan enbart användas vid installation, avinstallation och "
 "verifiering"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -1009,14 +1009,14 @@ msgstr ""
 "--nodeps kan enbart användas vid tillverkning, omtillverkning, "
 "omkompilering, installation, avinstallation, och verifiering"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test kan enbart användas vid installation, avinstallation och tillverkning"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1024,97 +1024,97 @@ msgstr ""
 "--root (-r) kan enbart användas vid installation, avinstallation, förfrågan, "
 "och databasombyggnad"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage kan enbart användas vid paketuppgraderingar"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp kan enbart användas vid signaturkontroll"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg kan enbart användas vid signaturkontroll"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 kan enbart användas vid signaturkontroll och paketverifiering"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr "inga filer att signera\n"
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan inte komma åt filen %s\n"
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr "pgp hittades inte: "
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr "Ange lösenfras: "
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Kontrollen av lösenfrasen misslyckades\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Lösenfrasen är ok.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Felaktig %%_signature spec i makrofil.\n"
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign kan enbart användas vid pakettillverkning"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr "exec misslyckades\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "oväntade argument till --querytags "
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "inga paket angivna för signaturkontroll"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "inga paket angivna för signering"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "inga paket angivna för avinstallation"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "inga paket angivna för installation"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "extra argument angivna för förfrågan om alla paket"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "inga parametrar angivna för undersökning"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr "extra argument angivna för verifiering av alla paket"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "inga parametrar angivna för verifiering"
 
@@ -1421,126 +1421,131 @@ msgstr "visa de olika [av]installationsskripten"
 msgid "show the trigger scriptlets contained in the package"
 msgstr "visa utlösningsskripten i paketet"
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "utför inga steg"
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr "   --install <paketfil>   "
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr "   -i <paketfil>          "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr "     --excludepath <sökväg>"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr "hoppa över filer med inledande <sökväg>"
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr "kör inte installationsskript"
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "kör inte utlösningsskript utlösta av detta paket"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr "     --prefix <katalog>   "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "     --relocate <frånskv>=<tillskv>"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr "   --upgrade <paketfil>   "
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr "   -U <paketfil>          "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr "   --erase <paket>  "
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr "   -b<steg> <spec>        "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr "   -t<steg> <tar-arkiv>   "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr "paket endast källrpm"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr "     --buildroot <kat>    "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr "     --target=<plattform>+"
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr "   --rebuild <källpaket>  "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr "   --recompile <källpaket>"
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr "   --resign <pkt>+        "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr "   --addsign <pkt>+       "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr "   --checksig <pkt>+"
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr "   -K <pkt>+             "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr "initiera databasen (onödigt, ärvt format)"
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr "bygg om databasindex från existerande databashuvuden"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Använd -e eller --erase istället.\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 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:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 "--notriggers kan enbart användas vid installation och avinstallation av paket"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "inga paketfiler angivna för omtillverkning"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "ingen spec-filer angivna för tillverkning"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "inga tar-filer angivna för tillverkning"
 
@@ -2258,51 +2263,55 @@ msgstr "rad %d: Felaktigt no%s-tal: %d"
 msgid "line %d: Bad %s number: %s\n"
 msgstr "rad %d: Felaktigt %s-tal: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "kan inte flytta %s till %s: %s\n"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "kan inte ta bort %s: %s\n"
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(fel 0x%x)"
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr "Felaktigt magiskt tal"
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr "Felaktigt/oläsbart huvud"
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr "Huvudstorlek för stor"
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr "Okänd filtyp"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr "Saknad hårdlänk"
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr "Internt fel"
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr " misslyckades - "
 
@@ -2545,26 +2554,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(inte ett tal)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() kunde inte returnera fugger-storlek: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "kunde inte ta status på %s: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr "hämtar lista över monterade filsystem\n"
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "kunde inte öppna %s: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "filen %s är på en okänd enhet"
@@ -2574,7 +2583,7 @@ msgstr "filen %s 
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE måste vara 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
@@ -2645,108 +2654,108 @@ msgstr "| f
 msgid "(unknown type)"
 msgstr "(okänd typ)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   fil: %s åtgärd: %s\n"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "användaren %s finns inte - använder root"
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "gruppen %s finns inte - använder root"
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "%%instchangelog-värde i makrofil skall vara ett tal, men är inte det"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "uppackning av arkiv misslyckades%s%s: %s"
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr "installerar källpaket\n"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "kan inte skapa källkatalog %s"
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr "kan inte skriva till %s"
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr "källkod i: %s\n"
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "kan inte skapa spec-katalog %s"
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-fil i: %s\n"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr "källpaket innehåller ingen spec-fil"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "byter namn på %s till %s\n"
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "namnbyte från %s till %s misslyckades: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr "källpaket förväntades, fann binärpaket"
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s filtest = %d\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr "avbryter installation eftersom vi kör --test\n"
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr "kör (eventuellt) preinstalltionsskript\n"
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varning: %s skapades som %s"
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varning: %s sparades som %s"
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr "kör (eventuellt) postinstallationsskript\n"
 
@@ -2987,11 +2996,16 @@ msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr "installation av paket %s-%s-%s kräver %ld%cb på filsystem %s"
 
 #: lib/problems.c:151
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr "installation av paket %s-%s-%s kräver %ld%cb på filsystem %s"
+
+#: lib/problems.c:158
 #, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s-%s-%s systemanrop före transaktion: %s misslyckades: %s"
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "okänt fel %d uppträdde under manipulation av paket %s-%s-%s"
@@ -3755,27 +3769,27 @@ msgstr "Du m
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "hoppar över %s%s\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
@@ -3795,179 +3809,179 @@ msgstr "rmdir av %s misslyckades: %s"
 msgid "removal of %s failed: %s"
 msgstr "borttagning av %s misslyckades: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "tar bort filer test = %d\n"
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr "kör (eventuellt) postavinstallationsskript\n"
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d"
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr "verifiera inte filerna i paketet"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "paket saknar både användarnamn och id-listor (detta borde aldrig inträffa)"
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "paket saknar både gruppnamn och id-listor (detta borde aldrig inträffa)"
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr "saknas     %s\n"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Ouppfyllda beroenden för %s-%s-%s: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr "Lyckades"
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr "Konstigt svar från server"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr "IO-fel mot server"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr "Förbindelsen med servern dog ut (timeout)"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr "Kunde inte slå upp serverns adress"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr "Kunde inte slå upp serverns namn"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr "Misslyckades med att kontakta servern"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr "Misslyckades med att etablera en dataförbindelse till servern"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "IO-fel mot lokal fil"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Fel när den fjärrservern sattes i passivt läge"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Filen fanns inte på servern"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr "Avbruten under gång"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr "Okänt eller oväntat fel"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "loggar in på %s som %s, lösenord %s\n"
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktiva %d tomma %d\n"
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(tom)"
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(tom)\n"
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s har oavslutad kropp"
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s har otillåtet namn (%%define)"
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s har oavslutade flaggor"
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr "makro %%%s har tom kropp"
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr "Makro %%%s misslyckades att expandera"
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s har otillåtet namn (%%undefine)"
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) var inte använd under nivå %d"
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Okänd flagga %c i %s(%s)"
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "Rekursionsdjup(%d) större än max(%d)"
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Oavslutad %c: %s"
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr "Ett %% följs av ett makro som inte kan parsas"
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Inget makro %%%.*s hittat, hoppar över"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr "Målbuffer översvämmad"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr "Fil %s: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Filen %s är mindre än %d byte"
@@ -4017,22 +4031,22 @@ msgstr "varning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgid "Password for %s@%s: "
 msgstr "Lösenord för %s@%s: "
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "fel: %s-port måste vara ett tal\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr "url-port måste vara ett tal\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "kunde inte öppna %s: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "kunde inte skapa %s: %s\n"
index 4a13e8a..212a51d 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -573,19 +573,19 @@ msgid ""
 "options as -q"
 msgstr "paketi -q ile belirtilen paket parametrelerini kullanarak doðrula"
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr "paket baðýmlýlýklarýný doðrulamaz"
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr "dosyalarýn 'md5-checksum' larýný doðrulamaz"
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr "dosya özelliklerini doðrulamaz"
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr "sorgulama sýrasýnda kullanýlabilecek 'Tag'leri sýralar"
 
@@ -599,7 +599,7 @@ msgstr "paket y
 msgid "    -i <packagefile>      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr "paket yüklemek"
 
@@ -617,11 +617,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "%s pakedi yüklenmemiþ\n"
@@ -630,48 +630,48 @@ msgstr "%s pakedi y
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "paketin yerini (eðer deðitirilebiliyorsa) <dizin>'e deðiþtirir"
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr "yazýlýmýn belgelerini yüklemez"
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs --replacefiles'ýn kýsaltmasý"
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr "yükleme sýrasýnda bir gösterge çýkarýr (-v seçeneði ile iyi)"
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "tüm dosyalarý, hatta normal olarak atlanabilecek yapýlandýrmalarý bile,yükler"
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr "paket mimarisini doðrulamaz"
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr "paket ile gelen belgeleri de yükler"
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "paket yükleme sýrasýný baðýmlýlýklara göre düzenleme"
 
@@ -679,23 +679,23 @@ msgstr "paket y
 msgid "don't execute any installation scripts"
 msgstr "yükleme betiklerini (scripts) çalýþtýrmaz."
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr "yükleme sýrasýnda geliþme yüzde olarak gösterilir"
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr "paket mevcut dosyalarý silse bile paketi yükler"
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr "paket mevcutsa yeniden yükler"
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
 
@@ -708,11 +708,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr "Paketi günceller (seçenekler --install ile ayný, ek olarak)"
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -723,11 +723,11 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr "paketi siler (uninstall)"
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -735,7 +735,7 @@ msgstr ""
 "<paket> ile eþlenen tüm paketleri siler (birden fazla paket eþlenirse bir "
 "hata mesajý çýkmasý gerekir)"
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr "pakete ait hiçbir betik (Script) çalýþtýrýlmaz"
 
@@ -748,58 +748,58 @@ msgstr "    -b<ad
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr "paket yaratýr, <adým> aþaðýdaki harflerden biridir:"
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr "hazýrlama (kaynaklar açýlýr ve yamalar uygulanýr)"
 
 # , c-format
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrol ( %files üstünkörü bir kontrol edilir)"
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr "derleme (hazýrlama ve derleme)"
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr "yükleme (hazýrlama, derleme, yükleme)"
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 "çalýþtýrýlabilir paket yaratma (hazýrlama, derleme, yükleme, paketleme)"
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "çalýþtýrýlabilir ve Kaynak paket yaratmak (hazýrlama, derleme, yükleme "
 "vepaketleme)"
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "doðrudan belirtilen adýma atlar (sadece c ve i için)"
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr "iþlem sonunda paket yaratma yapýsýný siler"
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 #, fuzzy
 msgid "remove sources when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 #, fuzzy
 msgid "remove spec file when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP-imzasý yaratýr"
@@ -809,7 +809,7 @@ msgstr "PGP-imzas
 msgid "      --buildroot <dir>   "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
 
@@ -817,11 +817,11 @@ msgstr "paket yarat
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
 
@@ -839,7 +839,7 @@ msgstr "zaman kontrol
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -851,7 +851,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr "--rebuild gibi, ama paket yaratmaz"
 
@@ -860,7 +860,7 @@ msgstr "--rebuild gibi, ama paket yaratmaz"
 msgid "    --resign <pkg>+       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
@@ -869,7 +869,7 @@ msgstr "paketi imzalar (mevcut imza kald
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr "pakete bir imza ekler"
 
@@ -883,20 +883,20 @@ msgstr "    -b<ad
 msgid "    -K <pkg>+             "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr "paket imzasýný doðrular"
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr "tüm PGP imzalarýný atlar"
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "tüm PGP imzalarýný atlar"
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr "tüm MD5 imzalarýný atlar"
 
@@ -908,7 +908,7 @@ msgstr "ge
 msgid "rebuild database from existing database"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -916,7 +916,7 @@ msgstr ""
 "dosya eriþim haklarýný veri tabanýnda yer alanlarla -q ile belirtilen paket "
 "parametrelerini kullanarak güncelle"
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -925,38 +925,38 @@ msgstr ""
 "belirtilen paket parametrelerini kullanarak güncelle"
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr "sadece bir ana kip (major mode) belirtilebilir"
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ve --uninstall komutlarý eskidirler ve çalýþmamaktadýrlar.\n"
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr "Yerine  -e veya --erase komutunu kullanýn\n"
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr "relocate satýrýnda = bulunmalý"
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr "relocate için = den sonra bir / gerekir"
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -964,111 +964,111 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr "bir anda sadece bir tarz sorgulama veya doðrulama yapýlabilir"
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 #, fuzzy
 msgid "unexpected query format"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "sadece yükleme ve güncelleme zorlanabilir (force edilebilir)"
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr "dosyalar sadece paket yüklemesi sýrasýnda relocate edilebilir"
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir"
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate sadece yeni paketler yüklenirken kullanýlýr"
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix sadece yeni paketlerin yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix komutunun argümanlarý '/' ile baþlamalý"
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "--excludedocs ve --includedocs bir arada kullanýlamaz (bi daha olmasýn)"
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sadece paket silinmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb sadece paket yükleme ve silmelerinde kullanýlýr"
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1082,7 +1082,7 @@ msgid ""
 msgstr ""
 "--nodeps sadece paket yüklemelerinde, silme ve doðrulamalarda kullanýlýr"
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -1090,13 +1090,13 @@ msgid ""
 msgstr ""
 "--nodeps sadece paket yüklemelerinde, silme ve doðrulamalarda kullanýlýr"
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test sadece paket yüklemelerinde, silme ve derlemelerinde kullanýlýr"
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1104,103 +1104,103 @@ msgstr ""
 "--root (-r) sadece yükleme, silme, sorgulama ve veritabaný güncellemelerinde "
 "kullanýlýr"
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) komutun argümanlarý '/' ile baþlamalý"
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage sadece güncelleme sýrasýnda kullanýlabilir"
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp sadece imza kontrolü veya paket doðrulamasý sýrasýnda kullanýlýr"
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Dosya sunucuda bulunamadý"
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr "Parola kontrolü baþarýsýzlýkla sonuçlandý\n"
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr "Parola doðru.\n"
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr "--sign sadece paket olusturulurken kullanýlabilir"
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags için beklenmeyen argümanlar"
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr "imzasý kontrol edilecek paketler belirtilmedi"
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr "imzalanacak paketler belirtilmedi"
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr "sistemden silinecek paketler belirtilmedi"
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr "yüklenecek paketler belirtilmedi"
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr "doðrulama için hiç argüman belirtilmedi"
 
@@ -1539,148 +1539,153 @@ msgstr "paketin 
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+#, fuzzy
+msgid "do not execute verify script (if any)"
+msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
+
+#: rpmqv.c:508
 #, fuzzy
 msgid "   --install <packagefile>"
 msgstr "paket yüklemek"
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 #, fuzzy
 msgid "   -i <packagefile>       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 #, fuzzy
 msgid "     --excludepath <path> "
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 #, fuzzy
 msgid "don't execute any installation scriptlets"
 msgstr "yükleme betiklerini (scripts) çalýþtýrmaz."
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 #, fuzzy
 msgid "don't execute any scriptlets triggered by this package"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 #, fuzzy
 msgid "     --prefix <dir>       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 #, fuzzy
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 #, fuzzy
 msgid "   --upgrade <packagefile>"
 msgstr "paket yüklemek"
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 #, fuzzy
 msgid "   -U <packagefile>       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 #, fuzzy
 msgid "   --erase <package>"
 msgstr "paket yüklemek"
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 #, fuzzy
 msgid "   -b<stage> <spec>       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 #, fuzzy
 msgid "   -t<stage> <tarball>    "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 #, fuzzy
 msgid "package src rpm only"
 msgstr "pakedin adý yok :-)"
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 #, fuzzy
 msgid "     --buildroot <dir>    "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 #, fuzzy
 msgid "     --target=<platform>+ "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 #, fuzzy
 msgid "   --rebuild <src_pkg>    "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 #, fuzzy
 msgid "   --recompile <src_pkg>  "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 #, fuzzy
 msgid "   --resign <pkg>+        "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 #, fuzzy
 msgid "   --addsign <pkg>+       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 #, fuzzy
 msgid "   --checksig <pkg>+"
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 #, fuzzy
 msgid "   -K <pkg>+             "
 msgstr "    -b<adým> <spec>      "
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 #, fuzzy
 msgid "rebuild database indices from existing database headers"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr "Yerine  -e veya --erase komutunu kullanýn\n"
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath veritabaný kullanýlmayan bir iþlemde belirtildi"
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr "--justdb sadece paket yükleme ve silmelerinde kullanýlýr"
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr "yeniden oluþturmak için paket dosyalarý belirtilmedi"
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr "oluþturma için gerekli spec dosyasý belirtilmedi"
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr "oluþturma için gereken tar dosyalarý belirttilmedi"
 
@@ -2409,53 +2414,57 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "%s okunamadý: %s"
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "hata: "
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(bilinmeyen tip)"
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Internal error"
 msgstr "ölümcül hata: "
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 #, fuzzy
 msgid " failed - "
 msgstr "PGP hata verdi"
@@ -2692,26 +2701,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr "(üye deðil)"
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() çaðrýsý boyut bilgisi vermedi: %s"
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2721,7 +2730,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2794,110 +2803,110 @@ msgstr "dizinin sonunda | bekleniyordu"
 msgid "(unknown type)"
 msgstr "(bilinmeyen tip)"
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "paket yüklemek"
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s 'nin isminin  %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3169,11 +3178,16 @@ msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
 #: lib/problems.c:151
+#, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
 #, fuzzy, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3930,27 +3944,27 @@ msgstr "rpmrc dosyan
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "%s alýnýyor\n"
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3970,187 +3984,187 @@ msgstr "%s dizinin silinmesinde belirtilen hata olu
 msgid "removal of %s failed: %s"
 msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "betik (script) çalýþtýrýlamadý "
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "paket yüklemek"
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "% den sonra eksik {"
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s 'nin baðýmlýlýk sorunlarý: "
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 #, fuzzy
 msgid "Bad server response"
 msgstr "FTP sunucusundan kötü yanýt"
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 #, fuzzy
 msgid "Server IO error"
 msgstr "FTP I/O hatasý"
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 #, fuzzy
 msgid "Server timeout"
 msgstr "FTP sunucusu zaman aþýmý"
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "FTP sunucusunun isim adres dönüþümü yapýlamadý"
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "FTP sunucusunun adres isim dönüþümü yapýlamadý"
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "FTP sunucusuna baðlanýlamadý"
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "FTP sunucusu ile veri alýþveriþi yapýlamadý"
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr "Yerel dosyaya eriþim sýrasýnda I/O hatasý"
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr "Karþý sunucuyu pasif kipe sokam hatasý"
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr "Dosya sunucuda bulunamadý"
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "FTP bilinmeyen ya da beklenmeyen hata"
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -4200,23 +4214,23 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr "%s'%s için parola"
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "hata: ftpport bir sayý olmalý\n"
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "hata: ftpport bir sayý olmalý\n"
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "%s açýlamadý: %s"
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s yaratýlamýyor\n"
index 2f72c5f..3b757b9 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 2f72c5f..3b757b9 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 2f72c5f..3b757b9 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 2f72c5f..3b757b9 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-09-26 10:31-0400\n"
+"POT-Creation-Date: 2000-10-24 09:32-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"
@@ -503,19 +503,19 @@ msgid ""
 "options as -q"
 msgstr ""
 
-#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:533 rpmqv.c:567
+#: rpm.c:376 rpm.c:418 rpm.c:453 rpmqv.c:487 rpmqv.c:535 rpmqv.c:569
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:378 rpmqv.c:489
+#: rpm.c:378 rpmqv.c:491
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:380 rpmqv.c:491
+#: rpm.c:380 rpmqv.c:489
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:382 rpmqv.c:494
+#: rpm.c:382 rpmqv.c:496
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:387 rpmqv.c:508
+#: rpm.c:387 rpmqv.c:510
 msgid "install package"
 msgstr ""
 
@@ -543,11 +543,11 @@ msgstr ""
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:391 rpmqv.c:545
+#: rpm.c:391 rpmqv.c:547
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:393 rpmqv.c:513
+#: rpm.c:393 rpmqv.c:515
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
@@ -555,47 +555,47 @@ msgstr ""
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:395 rpmqv.c:543
+#: rpm.c:395 rpmqv.c:545
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:399 rpmqv.c:515
+#: rpm.c:399 rpmqv.c:517
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:401 rpmqv.c:519
+#: rpm.c:401 rpmqv.c:521
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:403 rpmqv.c:521
+#: rpm.c:403 rpmqv.c:523
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:405 rpmqv.c:510
+#: rpm.c:405 rpmqv.c:512
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:408 rpmqv.c:523
+#: rpm.c:408 rpmqv.c:525
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:410 rpmqv.c:525
+#: rpm.c:410 rpmqv.c:527
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:412 rpmqv.c:527
+#: rpm.c:412 rpmqv.c:529
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:414 rpmqv.c:529
+#: rpm.c:414 rpmqv.c:531
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:416 rpm.c:451 rpmqv.c:531 rpmqv.c:565
+#: rpm.c:416 rpm.c:451 rpmqv.c:533 rpmqv.c:567
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:420 rpm.c:455 rpmqv.c:535 rpmqv.c:569
+#: rpm.c:420 rpm.c:455 rpmqv.c:537 rpmqv.c:571
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
@@ -603,23 +603,23 @@ msgstr ""
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:424 rpm.c:459 rpmqv.c:573
+#: rpm.c:424 rpm.c:459 rpmqv.c:575
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:426 rpmqv.c:541
+#: rpm.c:426 rpmqv.c:543
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:428 rpmqv.c:547
+#: rpm.c:428 rpmqv.c:549
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:430 rpmqv.c:549
+#: rpm.c:430 rpmqv.c:551
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:434 rpmqv.c:551
+#: rpm.c:434 rpmqv.c:553
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
@@ -631,11 +631,11 @@ msgstr ""
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:439 rpmqv.c:555
+#: rpm.c:439 rpmqv.c:557
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:441 rpmqv.c:557
+#: rpm.c:441 rpmqv.c:559
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -645,17 +645,17 @@ msgstr ""
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:445 rpmqv.c:561
+#: rpm.c:445 rpmqv.c:563
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:447 rpmqv.c:563
+#: rpm.c:447 rpmqv.c:565
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:457 rpmqv.c:571
+#: rpm.c:457 rpmqv.c:573
 msgid "do not execute any package specific scripts"
 msgstr ""
 
@@ -667,52 +667,52 @@ msgstr ""
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:465 rpmqv.c:580
+#: rpm.c:465 rpmqv.c:582
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:467 rpmqv.c:582
+#: rpm.c:467 rpmqv.c:584
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:469 rpmqv.c:584
+#: rpm.c:469 rpmqv.c:586
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:471 rpmqv.c:586
+#: rpm.c:471 rpmqv.c:588
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:473 rpmqv.c:588
+#: rpm.c:473 rpmqv.c:590
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:475 rpmqv.c:590
+#: rpm.c:475 rpmqv.c:592
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:477 rpmqv.c:592
+#: rpm.c:477 rpmqv.c:594
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:596
+#: lib/poptBT.c:156 rpm.c:479 rpmqv.c:598
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
-#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:598
+#: lib/poptBT.c:146 rpm.c:481 rpmqv.c:600
 msgid "remove build tree when done"
 msgstr ""
 
-#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:600
+#: lib/poptBT.c:152 rpm.c:483 rpmqv.c:602
 msgid "remove sources when done"
 msgstr ""
 
-#: rpm.c:485 rpmqv.c:602
+#: rpm.c:485 rpmqv.c:604
 msgid "remove spec file when done"
 msgstr ""
 
-#: rpm.c:487 rpmqv.c:604
+#: rpm.c:487 rpmqv.c:606
 msgid "generate PGP/GPG signature"
 msgstr ""
 
@@ -720,7 +720,7 @@ msgstr ""
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:489 rpmqv.c:606
+#: rpm.c:489 rpmqv.c:608
 msgid "use <dir> as the build root"
 msgstr ""
 
@@ -728,11 +728,11 @@ msgstr ""
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:491 rpmqv.c:608
+#: rpm.c:491 rpmqv.c:610
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:493 rpmqv.c:610
+#: rpm.c:493 rpmqv.c:612
 msgid "do not execute any stages"
 msgstr ""
 
@@ -748,7 +748,7 @@ msgstr ""
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:498 rpmqv.c:613
+#: rpm.c:498 rpmqv.c:615
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -758,7 +758,7 @@ msgstr ""
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:500 rpmqv.c:615
+#: rpm.c:500 rpmqv.c:617
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
@@ -766,7 +766,7 @@ msgstr ""
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:504 rpmqv.c:621
+#: rpm.c:504 rpmqv.c:623
 msgid "sign a package (discard current signature)"
 msgstr ""
 
@@ -774,7 +774,7 @@ msgstr ""
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:506 rpmqv.c:623
+#: rpm.c:506 rpmqv.c:625
 msgid "add a signature to a package"
 msgstr ""
 
@@ -786,19 +786,19 @@ msgstr ""
 msgid "    -K <pkg>+             "
 msgstr ""
 
-#: rpm.c:509 rpmqv.c:627
+#: rpm.c:509 rpmqv.c:629
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:511 rpmqv.c:629
+#: rpm.c:511 rpmqv.c:631
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:513 rpmqv.c:631
+#: rpm.c:513 rpmqv.c:633
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:515 rpmqv.c:633
+#: rpm.c:515 rpmqv.c:635
 msgid "skip any MD5 signatures"
 msgstr ""
 
@@ -810,50 +810,50 @@ msgstr ""
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:529 rpmqv.c:496
+#: rpm.c:529 rpmqv.c:498
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:532 rpmqv.c:499
+#: rpm.c:532 rpmqv.c:501
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
 #: rpm.c:670 rpm.c:676 rpm.c:685 rpm.c:707 rpm.c:713 rpm.c:720 rpm.c:728
-#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:821 rpmqv.c:830 rpmqv.c:836
-#: rpmqv.c:842 rpmqv.c:849 rpmqv.c:884 rpmqv.c:892 rpmqv.c:898 rpmqv.c:906
-#: rpmqv.c:974
+#: rpm.c:736 rpm.c:757 rpm.c:820 rpmqv.c:823 rpmqv.c:832 rpmqv.c:838
+#: rpmqv.c:844 rpmqv.c:851 rpmqv.c:886 rpmqv.c:894 rpmqv.c:900 rpmqv.c:908
+#: rpmqv.c:976
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:678 rpmqv.c:823
+#: rpm.c:678 rpmqv.c:825
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:680 rpmqv.c:825
+#: rpm.c:680 rpmqv.c:827
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:763 rpmqv.c:868
+#: rpm.c:763 rpmqv.c:870
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:765 rpmqv.c:870
+#: rpm.c:765 rpmqv.c:872
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:768 rpmqv.c:873
+#: rpm.c:768 rpmqv.c:875
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:777 rpmqv.c:857
+#: rpm.c:777 rpmqv.c:859
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:786 rpmqv.c:927
+#: rpm.c:786 rpmqv.c:929
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
@@ -861,105 +861,105 @@ msgstr ""
 msgid "Use --macros with a colon separated list of macro files to read.\n"
 msgstr ""
 
-#: rpm.c:792 rpmqv.c:933
+#: rpm.c:792 rpmqv.c:935
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:827 rpmqv.c:989
+#: rpm.c:827 rpmqv.c:991
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832 rpmqv.c:993
+#: rpm.c:832 rpmqv.c:995
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:835 rpmqv.c:996
+#: rpm.c:835 rpmqv.c:998
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:838 rpmqv.c:999
+#: rpm.c:838 rpmqv.c:1001
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:841 rpmqv.c:1019
+#: rpm.c:841 rpmqv.c:1021
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:844 rpmqv.c:1024
+#: rpm.c:844 rpmqv.c:1026
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:847 rpmqv.c:1027
+#: rpm.c:847 rpmqv.c:1029
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:850 rpmqv.c:1030
+#: rpm.c:850 rpmqv.c:1032
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:853 rpmqv.c:1033
+#: rpm.c:853 rpmqv.c:1035
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:856 rpmqv.c:1036
+#: rpm.c:856 rpmqv.c:1038
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:859 rpmqv.c:1039
+#: rpm.c:859 rpmqv.c:1041
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:863 rpmqv.c:1043
+#: rpm.c:863 rpmqv.c:1045
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:867 rpmqv.c:1047
+#: rpm.c:867 rpmqv.c:1049
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:871 rpmqv.c:1051
+#: rpm.c:871 rpmqv.c:1053
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:875 rpmqv.c:1055
+#: rpm.c:875 rpmqv.c:1057
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:879 rpmqv.c:1059
+#: rpm.c:879 rpmqv.c:1061
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:883 rpmqv.c:1063
+#: rpm.c:883 rpmqv.c:1065
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:887 rpmqv.c:1067
+#: rpm.c:887 rpmqv.c:1069
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:891 rpmqv.c:1071
+#: rpm.c:891 rpmqv.c:1073
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:895 rpmqv.c:1075
+#: rpm.c:895 rpmqv.c:1077
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:899 rpmqv.c:1079
+#: rpm.c:899 rpmqv.c:1081
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:903 rpmqv.c:1083
+#: rpm.c:903 rpmqv.c:1085
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:907 rpmqv.c:1087
+#: rpm.c:907 rpmqv.c:1089
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:912 rpmqv.c:1094
+#: rpm.c:912 rpmqv.c:1096
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -971,115 +971,115 @@ msgid ""
 "verification"
 msgstr ""
 
-#: rpm.c:920 rpmqv.c:1106
+#: rpm.c:920 rpmqv.c:1108
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpm.c:925 rpmqv.c:1111
+#: rpm.c:925 rpmqv.c:1113
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:929 rpmqv.c:1116
+#: rpm.c:929 rpmqv.c:1118
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:941 rpmqv.c:1128
+#: rpm.c:941 rpmqv.c:1130
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:947 rpmqv.c:1135
+#: rpm.c:947 rpmqv.c:1137
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:950 rpmqv.c:1140
+#: rpm.c:950 rpmqv.c:1142
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:953 rpmqv.c:1143
+#: rpm.c:953 rpmqv.c:1145
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:956 rpmqv.c:1148
+#: rpm.c:956 rpmqv.c:1150
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:967 rpmqv.c:1161
+#: rpm.c:967 rpmqv.c:1163
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:972 rpmqv.c:1166
+#: rpm.c:972 rpmqv.c:1168
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:987 rpmqv.c:1182
+#: rpm.c:987 rpmqv.c:1184
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:991 rpmqv.c:1186
+#: rpm.c:991 rpmqv.c:1188
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:993 rpmqv.c:1188
+#: rpm.c:993 rpmqv.c:1190
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:996 rpmqv.c:1191
+#: rpm.c:996 rpmqv.c:1193
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1001 rpmqv.c:1196
+#: rpm.c:1001 rpmqv.c:1198
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1007 rpmqv.c:1202
+#: rpm.c:1007 rpmqv.c:1204
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1022 rpmqv.c:1218
+#: rpm.c:1022 rpmqv.c:1220
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1041 rpmqv.c:1487
+#: rpm.c:1041 rpmqv.c:1489
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1052 rpmqv.c:1509
+#: rpm.c:1052 rpmqv.c:1511
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1063 rpmqv.c:1520
+#: rpm.c:1063 rpmqv.c:1522
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1079 rpmqv.c:1359
+#: rpm.c:1079 rpmqv.c:1361
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1130 rpmqv.c:1410
+#: rpm.c:1130 rpmqv.c:1412
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1153 rpmqv.c:1450
+#: rpm.c:1153 rpmqv.c:1452
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1158 rpmqv.c:1455
+#: rpm.c:1158 rpmqv.c:1457
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1175 rpmqv.c:1475
+#: rpm.c:1175 rpmqv.c:1477
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1179 rpmqv.c:1479
+#: rpm.c:1179 rpmqv.c:1481
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1370,124 +1370,128 @@ msgstr ""
 msgid "show the trigger scriptlets contained in the package"
 msgstr ""
 
-#: rpmqv.c:506
+#: rpmqv.c:493
+msgid "do not execute verify script (if any)"
+msgstr ""
+
+#: rpmqv.c:508
 msgid "   --install <packagefile>"
 msgstr ""
 
-#: rpmqv.c:507
+#: rpmqv.c:509
 msgid "   -i <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:516
+#: rpmqv.c:518
 msgid "     --excludepath <path> "
 msgstr ""
 
-#: rpmqv.c:517
+#: rpmqv.c:519
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: rpmqv.c:537
+#: rpmqv.c:539
 msgid "don't execute any installation scriptlets"
 msgstr ""
 
-#: rpmqv.c:539
+#: rpmqv.c:541
 msgid "don't execute any scriptlets triggered by this package"
 msgstr ""
 
-#: rpmqv.c:542
+#: rpmqv.c:544
 msgid "     --prefix <dir>       "
 msgstr ""
 
-#: rpmqv.c:544
+#: rpmqv.c:546
 msgid "     --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpmqv.c:553
+#: rpmqv.c:555
 msgid "   --upgrade <packagefile>"
 msgstr ""
 
-#: rpmqv.c:554
+#: rpmqv.c:556
 msgid "   -U <packagefile>       "
 msgstr ""
 
-#: rpmqv.c:559
+#: rpmqv.c:561
 msgid "   --erase <package>"
 msgstr ""
 
-#: rpmqv.c:578
+#: rpmqv.c:580
 msgid "   -b<stage> <spec>       "
 msgstr ""
 
-#: rpmqv.c:579
+#: rpmqv.c:581
 msgid "   -t<stage> <tarball>    "
 msgstr ""
 
-#: rpmqv.c:594
+#: rpmqv.c:596
 msgid "package src rpm only"
 msgstr ""
 
-#: rpmqv.c:605
+#: rpmqv.c:607
 msgid "     --buildroot <dir>    "
 msgstr ""
 
-#: rpmqv.c:607
+#: rpmqv.c:609
 msgid "     --target=<platform>+ "
 msgstr ""
 
-#: rpmqv.c:612
+#: rpmqv.c:614
 msgid "   --rebuild <src_pkg>    "
 msgstr ""
 
-#: rpmqv.c:614
+#: rpmqv.c:616
 msgid "   --recompile <src_pkg>  "
 msgstr ""
 
-#: rpmqv.c:620
+#: rpmqv.c:622
 msgid "   --resign <pkg>+        "
 msgstr ""
 
-#: rpmqv.c:622
+#: rpmqv.c:624
 msgid "   --addsign <pkg>+       "
 msgstr ""
 
-#: rpmqv.c:625
+#: rpmqv.c:627
 msgid "   --checksig <pkg>+"
 msgstr ""
 
-#: rpmqv.c:626
+#: rpmqv.c:628
 msgid "   -K <pkg>+             "
 msgstr ""
 
-#: rpmqv.c:639
+#: rpmqv.c:641
 msgid "initalize database (unnecessary, legacy use)"
 msgstr ""
 
-#: rpmqv.c:641
+#: rpmqv.c:643
 msgid "rebuild database indices from existing database headers"
 msgstr ""
 
-#: rpmqv.c:928
+#: rpmqv.c:930
 msgid "Use \"--macros <file:...>\" instead..\n"
 msgstr ""
 
-#: rpmqv.c:1003
+#: rpmqv.c:1005
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:1100
+#: rpmqv.c:1102
 msgid ""
 "--notriggers may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:1258
+#: rpmqv.c:1260
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1327
+#: rpmqv.c:1329
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1329
+#: rpmqv.c:1331
 msgid "no tar files given for build"
 msgstr ""
 
@@ -2205,51 +2209,55 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:384
+#: lib/cpio.c:443
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:390
+#: lib/cpio.c:449
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:638
+#: lib/cpio.c:753
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1099
+#: lib/cpio.c:1239
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1102
+#: lib/cpio.c:1242
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1103
+#: lib/cpio.c:1243
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1121
+#: lib/cpio.c:1261
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1122
+#: lib/cpio.c:1262
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1123
+#: lib/cpio.c:1263
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1124
+#: lib/cpio.c:1264
+msgid "MD5 sum mismatch"
+msgstr ""
+
+#: lib/cpio.c:1265
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1133
+#: lib/cpio.c:1274
 msgid " failed - "
 msgstr ""
 
@@ -2485,26 +2493,26 @@ msgstr ""
 msgid "(not a number)"
 msgstr ""
 
-#: lib/fs.c:60
+#: lib/fs.c:67
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: lib/fs.c:95 lib/fs.c:265
+#: lib/fs.c:102 lib/fs.c:285
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr ""
 
-#: lib/fs.c:131
+#: lib/fs.c:145
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
-#: lib/fs.c:136
+#: lib/fs.c:150
 #, c-format
 msgid "failed to open %s: %s"
 msgstr ""
 
-#: lib/fs.c:287
+#: lib/fs.c:307
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
@@ -2514,7 +2522,7 @@ msgstr ""
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:351
+#: lib/header.c:275 lib/header.c:745 lib/install.c:378
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2585,108 +2593,108 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:168 lib/uninstall.c:193
+#: lib/install.c:188 lib/uninstall.c:191
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:189
+#: lib/install.c:212
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:197
+#: lib/install.c:220
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:230
+#: lib/install.c:253
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:612
+#: lib/install.c:655
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:613
+#: lib/install.c:656
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:705
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:677
+#: lib/install.c:725
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:683 lib/install.c:713
+#: lib/install.c:731 lib/install.c:761
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:687
+#: lib/install.c:735
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:707
+#: lib/install.c:755
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:717
+#: lib/install.c:765
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:751 lib/install.c:779
+#: lib/install.c:797 lib/install.c:825
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:801
+#: lib/install.c:843
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:803 lib/install.c:1071 lib/uninstall.c:40
+#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:893
+#: lib/install.c:935
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:940
+#: lib/install.c:980
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1000
+#: lib/install.c:1040
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1005
+#: lib/install.c:1045
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1030
+#: lib/install.c:1077
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1067
+#: lib/install.c:1113
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1155
+#: lib/install.c:1202
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2925,10 +2933,15 @@ msgstr ""
 
 #: lib/problems.c:151
 #, c-format
+msgid "installing package %s-%s-%s needs %ld inodes on the %s filesystem"
+msgstr ""
+
+#: lib/problems.c:158
+#, c-format
 msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:159
+#: lib/problems.c:166
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
@@ -3666,27 +3679,27 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:425
+#: lib/transaction.c:420
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:451 lib/transaction.c:534
+#: lib/transaction.c:446 lib/transaction.c:529
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:456
+#: lib/transaction.c:451
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:527
+#: lib/transaction.c:522
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:679
+#: lib/transaction.c:674
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3706,177 +3719,177 @@ msgstr ""
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:133
+#: lib/uninstall.c:131
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:217
+#: lib/uninstall.c:215
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:419
+#: lib/uninstall.c:416
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
 
-#: lib/verify.c:43
+#: lib/verify.c:44
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/verify.c:219
+#: lib/verify.c:218
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:237
+#: lib/verify.c:236
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:284
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:335
+#: lib/verify.c:346
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:533
+#: rpmio/rpmio.c:543
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:536
+#: rpmio/rpmio.c:546
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:539
+#: rpmio/rpmio.c:549
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:542
+#: rpmio/rpmio.c:552
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:545
+#: rpmio/rpmio.c:555
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:548
+#: rpmio/rpmio.c:558
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:551
+#: rpmio/rpmio.c:561
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:554
+#: rpmio/rpmio.c:564
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:557
+#: rpmio/rpmio.c:567
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:560
+#: rpmio/rpmio.c:570
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:563
+#: rpmio/rpmio.c:573
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:576
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:580
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1165
+#: rpmio/rpmio.c:1175
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: rpmio/macro.c:169
+#: rpmio/macro.c:183
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: rpmio/macro.c:264
+#: rpmio/macro.c:297
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: rpmio/macro.c:299
+#: rpmio/macro.c:338
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: rpmio/macro.c:478
+#: rpmio/macro.c:551
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: rpmio/macro.c:504
+#: rpmio/macro.c:577
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: rpmio/macro.c:510
+#: rpmio/macro.c:583
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: rpmio/macro.c:515
+#: rpmio/macro.c:588
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: rpmio/macro.c:520
+#: rpmio/macro.c:593
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: rpmio/macro.c:545
+#: rpmio/macro.c:624
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: rpmio/macro.c:622
+#: rpmio/macro.c:717
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: rpmio/macro.c:706
+#: rpmio/macro.c:809
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: rpmio/macro.c:864
+#: rpmio/macro.c:985
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: rpmio/macro.c:930 rpmio/macro.c:946
+#: rpmio/macro.c:1051 rpmio/macro.c:1067
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: rpmio/macro.c:986
+#: rpmio/macro.c:1107
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: rpmio/macro.c:1112
+#: rpmio/macro.c:1233
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1193
+#: rpmio/macro.c:1314
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1373 rpmio/macro.c:1379
+#: rpmio/macro.c:1493 rpmio/macro.c:1499
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1382
+#: rpmio/macro.c:1502
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3925,22 +3938,22 @@ msgstr ""
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:247 rpmio/url.c:273
+#: rpmio/url.c:248 rpmio/url.c:274
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:409
+#: rpmio/url.c:410
 msgid "url port must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:449
+#: rpmio/url.c:450
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:466
+#: rpmio/url.c:467
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 3756e1e..09e361e 100644 (file)
@@ -10,7 +10,7 @@ pkginc_HEADERS = rpmio.h rpmurl.h rpmmacro.h rpmlog.h rpmmessages.h rpmerr.h
 noinst_HEADERS = rpmio_internal.h ugid.h
 
 lib_LTLIBRARIES = librpmio.la
-librpmio_la_SOURCES = rpmrpc.c rpmio.c rpmio_api.c url.c macro.c \
+librpmio_la_SOURCES = rpmrpc.c rpmio.c rpmio_api.c url.c macro.c md5.c \
        ugid.c rpmmalloc.c rpmlog.c
 
 # XXX Add internal libtool dependence
diff --git a/rpmio/md5.c b/rpmio/md5.c
new file mode 100644 (file)
index 0000000..9a2ac8c
--- /dev/null
@@ -0,0 +1,322 @@
+/** \ingroup signature
+ * \file rpmio/md5hash.c
+ *
+ * This code implements the MD5 message-digest algorithm.
+ * The algorithm is due to Ron Rivest.  This code was
+ * written by Colin Plumb in 1993, no copyright is claimed.
+ * This code is in the public domain; do with it what you wish.
+ *
+ * Equivalent code is available from RSA Data Security, Inc.
+ * This code has been tested against that, and is equivalent,
+ * except that you don't need to include two pages of legalese
+ * with every copy.
+ *
+ * To compute the message digest of a chunk of bytes, declare an
+ * MD5Context structure, pass it to MD5Init, call MD5Update as
+ * needed on buffers full of bytes, and then call MD5Final, which
+ * will fill a supplied 16-byte array with the digest.
+ */
+
+#include "system.h"
+
+#include "rpmio_internal.h"
+
+typedef unsigned int uint32;
+
+/**
+ * MD5 private data.
+ */
+typedef struct MD5Context_s {
+    uint32 buf[4];
+    uint32 bits[2];
+    unsigned char in[64];
+    int doByteReverse;
+} * MD5Context;
+
+static int _ie = 0x44332211;
+static union _mendian { int i; char b[4]; } *_endian = (union _mendian *)&_ie;
+#define        IS_BIG_ENDIAN()         (_endian->b[0] == '\x44')
+#define        IS_LITTLE_ENDIAN()      (_endian->b[0] == '\x11')
+
+/* The four core functions - F1 is optimized somewhat */
+
+/* #define F1(x, y, z) (x & y | ~x & z) */
+#define F1(x, y, z) (z ^ (x & (y ^ z)))
+#define F2(x, y, z) F1(z, x, y)
+#define F3(x, y, z) (x ^ y ^ z)
+#define F4(x, y, z) (y ^ (x | ~z))
+
+/* This is the central step in the MD5 algorithm. */
+#define MD5STEP(f, w, x, y, z, data, s) \
+       ( w += f(x, y, z) + data,  w = w<<s | w>>(32-s),  w += x )
+
+/**
+ * The core of the MD5 algorithm.
+ * This alters an existing MD5 hash to reflect the addition of 16 longwords
+ * of new data.
+ */
+static void
+MD5Transform(void * private)
+{
+    MD5Context ctx = (MD5Context) private;
+    register uint32 * in = (uint32 *)ctx->in;
+    register uint32 a = ctx->buf[0];
+    register uint32 b = ctx->buf[1];
+    register uint32 c = ctx->buf[2];
+    register uint32 d = ctx->buf[3];
+
+    MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
+    MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
+    MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
+    MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
+    MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
+    MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
+    MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
+    MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
+    MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
+    MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
+    MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
+    MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
+    MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
+    MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
+    MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
+    MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
+
+    MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
+    MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
+    MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
+    MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
+    MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
+    MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
+    MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
+    MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
+    MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
+    MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
+    MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
+    MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
+    MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
+    MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
+    MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
+    MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
+
+    MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
+    MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
+    MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
+    MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
+    MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
+    MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
+    MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
+    MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
+    MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
+    MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
+    MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
+    MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
+    MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
+    MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
+    MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
+    MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
+
+    MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
+    MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
+    MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
+    MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
+    MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
+    MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
+    MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
+    MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
+    MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
+    MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
+    MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
+    MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
+    MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
+    MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
+    MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
+    MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
+
+    ctx->buf[0] += a;
+    ctx->buf[1] += b;
+    ctx->buf[2] += c;
+    ctx->buf[3] += d;
+}
+
+/*
+ * Note: this code is harmless on little-endian machines.
+ */
+static void
+byteReverse(unsigned char *buf, unsigned longs)
+{
+    uint32 t;
+    do {
+       t = (uint32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
+           ((unsigned) buf[1] << 8 | buf[0]);
+       *(uint32 *) buf = t;
+       buf += 4;
+    } while (--longs);
+}
+
+/**
+ * Initialize MD5 hash.
+ * Set bit count to 0 and buffer to mysterious initialization constants.
+ * @param brokenEndian calculate broken MD5 sum?
+ * @return             MD5 private data
+ */
+static void *
+MD5Init(int brokenEndian)
+{
+    MD5Context ctx = xcalloc(1, sizeof(*ctx));
+
+    ctx->buf[0] = 0x67452301;
+    ctx->buf[1] = 0xefcdab89;
+    ctx->buf[2] = 0x98badcfe;
+    ctx->buf[3] = 0x10325476;
+
+    ctx->bits[0] = 0;
+    ctx->bits[1] = 0;
+
+    if (IS_BIG_ENDIAN())
+       ctx->doByteReverse = (brokenEndian ? 0 : 1);
+    else
+       ctx->doByteReverse = 0;
+    return ctx;
+}
+
+/**
+ * Update context to reflect the concatenation of another buffer full
+ * of bytes.
+ * @param private      MD5 private data
+ * @param data         next data buffer
+ * @param len          no. bytes of data
+ */
+static void
+MD5Update(void * private, const void * data, size_t len)
+{
+    MD5Context ctx = (MD5Context) private;
+    const unsigned char * buf = data;
+    uint32 t;
+
+    /* Update bitcount */
+
+    t = ctx->bits[0];
+    if ((ctx->bits[0] = t + ((uint32) len << 3)) < t)
+       ctx->bits[1]++;         /* Carry from low to high */
+    ctx->bits[1] += len >> 29;
+
+    t = (t >> 3) & 0x3f;       /* Bytes already in ctx->in */
+
+    /* Handle any leading odd-sized chunks */
+
+    if (t) {
+       unsigned char *p = (unsigned char *) ctx->in + t;
+
+       t = 64 - t;
+       if (len < t) {
+           memcpy(p, buf, len);
+           return;
+       }
+       memcpy(p, buf, t);
+       if (ctx->doByteReverse)
+           byteReverse(ctx->in, 16);
+       MD5Transform(ctx);
+       buf += t;
+       len -= t;
+    }
+
+    /* Process data in 64-byte chunks */
+
+    for (; len >= 64; buf += 64, len -= 64) {
+       memcpy(ctx->in, buf, 64);
+       if (ctx->doByteReverse)
+           byteReverse(ctx->in, 16);
+       MD5Transform(ctx);
+    }
+
+    /* Handle any remaining bytes of data. */
+    memcpy(ctx->in, buf, len);
+}
+
+/**
+ * Return MD5 sum and destroy context.
+ * Final wrapup - pad to 64-byte boundary with the bit pattern 
+ * 1 0* (64-bit count of bits processed, MSB-first)
+ *
+ * @param private      MD5 private data
+ * @retval datap       address of returned MD5 sum
+ * @retval lenp                address of MD5 sum length
+ * @param asAscii      return md5sum as ascii string?
+ */
+static void
+MD5Final(void * private, void ** datap, size_t *lenp, int asAscii)
+{
+    MD5Context ctx = (MD5Context) private;
+    unsigned count;
+    unsigned char *p;
+
+    /* Compute number of bytes mod 64 */
+    count = (ctx->bits[0] >> 3) & 0x3F;
+
+    /* Set the first char of padding to 0x80.  This is safe since there is
+       always at least one byte free */
+    p = ctx->in + count;
+    *p++ = 0x80;
+
+    /* Bytes of padding needed to make 64 bytes */
+    count = 64 - 1 - count;
+
+    /* Pad out to 56 mod 64 */
+    if (count < 8) {
+       /* Two lots of padding:  Pad the first block to 64 bytes */
+       memset(p, 0, count);
+       if (ctx->doByteReverse)
+           byteReverse(ctx->in, 16);
+       MD5Transform(ctx);
+
+       /* Now fill the next block with 56 bytes */
+       memset(ctx->in, 0, 56);
+    } else {
+       /* Pad block to 56 bytes */
+       memset(p, 0, count - 8);
+    }
+    if (ctx->doByteReverse)
+       byteReverse(ctx->in, 14);
+
+    /* Append length in bits and transform */
+    ((uint32 *) ctx->in)[14] = ctx->bits[0];
+    ((uint32 *) ctx->in)[15] = ctx->bits[1];
+
+    MD5Transform(ctx);
+    if (ctx->doByteReverse)
+       byteReverse((unsigned char *) ctx->buf, 4);
+
+    if (!asAscii) {
+       if (lenp) *lenp = 16;
+       if (datap) {
+           *datap = xmalloc(16);
+           memcpy(*datap, ctx->buf, 16);
+       }
+    } else {
+       if (lenp) *lenp = 32+1;
+       if (datap) {
+           const unsigned char * s = (const unsigned char *) ctx->buf;
+           static const char hex[] = "0123456789abcdef";
+           char * t;
+           int i;
+
+           *datap = t = xmalloc(32+1);
+
+           for (i = 0 ; i < 16; i++) {
+               *t++ = hex[ ((*s >> 4) & 0x0f) ];
+               *t++ = hex[ ((*s++   ) & 0x0f) ];
+           }
+           *t = '\0';
+       }
+    }
+    memset(ctx, 0, sizeof(*ctx));      /* In case it's sensitive */
+    free(ctx);
+}
+
+/**
+ * MD5 transform vectors.
+ */
+FDHASH_t rpmio_md5hash = {
+    NULL, MD5Init, MD5Update, MD5Final, MD5Transform
+};
index 01c34a3..3bc6c5b 100644 (file)
@@ -243,6 +243,10 @@ DBGREFS(fd, (stderr, "--> fd  %p -- %d %s at %s:%u %s\n", fd, fd->nrefs, msg, fi
        if (--fd->nrefs > 0)
            /*@-refcounttrans@*/ return fd; /*@=refcounttrans@*/
        if (fd->stats) free(fd->stats);
+       if (fd->hash) {
+           if (fd->hash->private) free(fd->hash->private);
+           free(fd->hash);
+       }
        /*@-refcounttrans@*/ free(fd); /*@=refcounttrans@*/
     }
     return NULL;
@@ -271,6 +275,7 @@ static inline /*@null@*/ FD_t XfdNew(const char *msg, const char *file, unsigned
     fd->syserrno = 0;
     fd->errcookie = NULL;
     fd->stats = calloc(1, sizeof(FDSTAT_t));
+    fd->hash = NULL;
     gettimeofday(&fd->stats->create, NULL);
     fd->stats->begin = fd->stats->create;      /* structure assignment */
 
@@ -292,6 +297,8 @@ ssize_t fdRead(void * cookie, /*@out@*/ char * buf, size_t count) {
     rc = read(fdFileno(fd), buf, (count > fd->bytesRemain ? fd->bytesRemain : count));
     fdstat_exit(fd, FDSTAT_READ, rc);
 
+    if (fd->hash) fd->hash->Update(fd->hash->private, buf, count);
+
 DBGIO(fd, (stderr, "==>\tfdRead(%p,%p,%ld) rc %ld %s\n", cookie, buf, (long)count, (long)rc, fdbg(fd)));
 
     return rc;
@@ -303,6 +310,9 @@ ssize_t fdWrite(void * cookie, const char * buf, size_t count) {
     ssize_t rc;
 
     if (fd->bytesRemain == 0) return 0;        /* XXX simulate EOF */
+
+    if (fd->hash) fd->hash->Update(fd->hash->private, buf, count);
+
     if (fd->wr_chunked) {
        char chunksize[20];
        sprintf(chunksize, "%x\r\n", (unsigned)count);
@@ -1918,6 +1928,7 @@ DBGIO(fd, (stderr, "==>\tgzdRead(%p,%p,%u) rc %lx %s\n", cookie, buf, (unsigned)
        }
     } else if (rc >= 0) {
        fdstat_exit(fd, FDSTAT_READ, rc);
+       if (fd->hash) fd->hash->Update(fd->hash->private, buf, count);
     }
     return rc;
 }
@@ -1928,6 +1939,9 @@ static ssize_t gzdWrite(void * cookie, const char * buf, size_t count) {
     ssize_t rc;
 
     if (fd->bytesRemain == 0) return 0;        /* XXX simulate EOF */
+
+    if (fd->hash) fd->hash->Update(fd->hash->private, buf, count);
+
     gzfile = gzdFileno(fd);
     fdstat_enter(fd, FDSTAT_WRITE);
     rc = gzwrite(gzfile, (void *)buf, count);
@@ -2099,6 +2113,7 @@ static ssize_t bzdRead(void * cookie, /*@out@*/ char * buf, size_t count) {
        fd->errcookie = bzerror(bzfile, &zerror);
     } else if (rc >= 0) {
        fdstat_exit(fd, FDSTAT_READ, rc);
+       if (fd->hash) fd->hash->Update(fd->hash->private, buf, count);
     }
     return rc;
 }
@@ -2109,6 +2124,9 @@ static ssize_t bzdWrite(void * cookie, const char * buf, size_t count) {
     ssize_t rc;
 
     if (fd->bytesRemain == 0) return 0;        /* XXX simulate EOF */
+
+    if (fd->hash) fd->hash->Update(fd->hash->private, buf, count);
+
     bzfile = bzdFileno(fd);
     fdstat_enter(fd, FDSTAT_WRITE);
     rc = bzwrite(bzfile, (void *)buf, count);
index d39b6dd..d4fae9b 100644 (file)
@@ -48,6 +48,18 @@ typedef      struct {
 } FDSTAT_t;
 
 /** \ingroup rpmio
+ */
+typedef struct {
+    void * private;
+    void * (*Init) (int flags);
+    void (*Update) (void * private, const void * data, size_t len);
+    void (*Final) (/*@only@*/ void * private, /*@out@*/ void ** datap, /*@out@*/ size_t *lenp, int asAscii);
+    void (*Transform) (void * private);
+} FDHASH_t;
+
+extern FDHASH_t rpmio_md5hash;
+
+/** \ingroup rpmio
  * The FD_t File Handle data structure.
  */
 struct _FD_s {
@@ -72,6 +84,7 @@ struct _FD_s {
 /*@observer@*/ const void *errcookie;  /* gzdio/bzdio/ufdio: */
 
        FDSTAT_t        *stats;         /* I/O statistics */
+       FDHASH_t        *hash;          /* Hash vectors */
 
        int             ftpFileDoneNeeded; /* ufdio: (FTP) */
        unsigned int    firstFree;      /* fadio: */
@@ -299,6 +312,28 @@ int ufdClose( /*@only@*/ void * cookie);
     /*@-refcounttrans@*/ return fd; /*@=refcounttrans@*/
 }
 
+/** \ingroup rpmio
+ */
+/*@unused@*/ static inline void fdInitMD5(FD_t fd) {
+    fd->hash = xcalloc(1, sizeof(*fd->hash));
+    *fd->hash = rpmio_md5hash; /* structure assignment */
+    fd->hash->private = (*fd->hash->Init) (0);
+}
+
+/** \ingroup rpmio
+ */
+/*@unused@*/ static inline void fdFiniMD5(FD_t fd, void **datap, size_t *lenp, int asAscii) {
+    if (fd->hash == NULL) {
+       *datap = NULL;
+       *lenp = 0;
+       return;
+    }
+    (*fd->hash->Final) (fd->hash->private, datap, lenp, asAscii);
+    fd->hash->private = NULL;
+    free(fd->hash);
+    fd->hash = NULL;
+}
+
 /*@-shadow@*/
 /** \ingroup rpmio
  */