- legacy: drop brokenMD5 support (rrpm-2.3.3 to rpm-2.3.8 on sparc).
authorjbj <devnull@localhost>
Tue, 25 Sep 2001 20:51:34 +0000 (20:51 +0000)
committerjbj <devnull@localhost>
Tue, 25 Sep 2001 20:51:34 +0000 (20:51 +0000)
- eliminate DYING code.

CVS patchset: 5082
CVS date: 2001/09/25 20:51:34

54 files changed:
CHANGES
build/buildio.h
build/spec.c
lib/cpio.c
lib/cpio.h
lib/depends.c
lib/fsm.c
lib/fsm.h
lib/manifest.c
lib/misc.c
lib/misc.h
lib/psm.c
lib/psm.h
lib/rpmlib.h
lib/rpmrc.c
lib/signature.c
lib/transaction.c
lib/verify.c
po/cs.po
po/da.po
po/de.po
po/en_RN.po
po/es.po
po/eu_ES.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
python/rpmmodule.c
rpm.spec
rpm.spec.in
rpmio/rpmio.h
rpmio/rpmio_internal.h

diff --git a/CHANGES b/CHANGES
index 3ae7439..c5dc1ef 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,8 @@
        - loosely wire beecrypt library into rpm.
        - drop rpmio/base64.[ch] in favor of beecrypt.
        - drop lib/md5*.[ch] files in favor of beecrypt.
+       - legacy: drop brokenMD5 support (rrpm-2.3.3 to rpm-2.3.8 on sparc).
+       - eliminate DYING code.
 
 4.0.3 -> 4.0.4:
 
index 4570b4c..36f225f 100644 (file)
@@ -9,6 +9,7 @@
  */
 
 #include "psm.h"
+#include "rpmbuild.h"
 
 /**
  */
index f6c1882..1ec0043 100644 (file)
@@ -5,7 +5,6 @@
 
 #include "system.h"
 
-#include "rpmbuild.h"
 #include "buildio.h"
 #include "debug.h"
 
index 231272d..1524279 100644 (file)
@@ -8,7 +8,6 @@
  */
 
 #include "system.h"
-#include <rpmlib.h>
 
 #include "fsm.h"
 #include "rpmerr.h"
index 9fe288f..faf8a36 100644 (file)
  *
  */
 
-#include <zlib.h>
 #include <sys/types.h>
+#include <zlib.h>
 
 #include <rpmio_internal.h>
+#include <rpmlib.h>
 
 /** \ingroup payload
  * @note CPIO_CHECK_ERRNO bit is set only if errno is valid.
index 98c7895..15401ce 100644 (file)
@@ -1305,7 +1305,7 @@ static int unsatisfiedDepend(rpmTransactionSet ts,
        }
        mi = rpmdbFreeIterator(mi);
 
-#ifndef DYING
+#ifdef DYING
        mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_NAME, keyName, 0);
        (void) rpmdbPruneIterator(mi,
                        ts->removedPackages, ts->numRemovedPackages, 1);
index ad7497b..ec4a6d1 100644 (file)
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -652,7 +652,6 @@ int fsmMapAttrs(FSM_t fsm)
 
 /** \ingroup payload
  * Create file from payload stream.
- * @todo Legacy: support brokenEndian MD5 checks?
  * @param fsm          file state machine data
  * @return             0 on success
  */
@@ -672,7 +671,6 @@ static int expandRegular(/*@special@*/ FSM_t fsm)
     /* XXX md5sum's will break on repackaging that includes modified files. */
     fmd5sum = fsm->fmd5sum;
 
-    /* XXX This doesn't support brokenEndian checks. */
     if (st->st_size > 0 && fmd5sum)
        fdInitMD5(fsm->wfd, 0);
 
index 23f5c14..8011636 100644 (file)
--- a/lib/fsm.h
+++ b/lib/fsm.h
@@ -6,7 +6,6 @@
  * File state machine to handle a payload within an rpm package.
  */
 
-#include <rpmlib.h>
 #include "cpio.h"
 
 /**
index c1480ec..c122383 100644 (file)
@@ -4,8 +4,9 @@
 
 #include "system.h"
 
-#include <rpmlib.h>
 #include <rpmio_internal.h>
+#include <rpmlib.h>
+
 #include "stringbuf.h"
 #include "manifest.h"
 #include "misc.h"
index c677d41..0393417 100644 (file)
@@ -6,19 +6,18 @@
 
 static int _debug = 0;
 
-#include <rpmlib.h>
+#include "rpmio_internal.h"
 #include <rpmurl.h>
 #include <rpmmacro.h>  /* XXX for rpmGetPath */
+#include <rpmlib.h>
 
-#include "rpmio_internal.h"
 #include "misc.h"
 #include "debug.h"
 
 /*@access Header@*/            /* XXX compared with NULL */
 /*@access FD_t@*/              /* XXX compared with NULL */
 
-int domd5(const char * fn, unsigned char * digest, int asAscii,
-                int brokenEndian)
+int domd5(const char * fn, unsigned char * digest, int asAscii)
 {
     int rc;
 
@@ -33,8 +32,7 @@ int domd5(const char * fn, unsigned char * digest, int asAscii,
        return 1;
     }
 
-    /* Preserve legacy "brokenEndian" behavior. */
-    fdInitMD5(fd, brokenEndian);
+    fdInitMD5(fd, 0);
 
     while ((rc = Fread(buf, sizeof(buf[0]), sizeof(buf), fd)) > 0)
        {};
index dc4e91e..c4df521 100644 (file)
@@ -26,12 +26,10 @@ extern "C" {
  * @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
  */
 /*@-exportlocal@*/
-int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii,
-                int brokenEndian)
+int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii)
        /*@modifies digest, fileSystem @*/;
 /*@=exportlocal@*/
 
@@ -46,7 +44,7 @@ int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii,
 int mdfile(const char * fn, /*@out@*/ unsigned char * digest)
        /*@modifies digest, fileSystem @*/
 {
-    return domd5(fn, digest, 1, 0);
+    return domd5(fn, digest, 1);
 }
 
 /**
@@ -60,45 +58,22 @@ int mdfile(const char * fn, /*@out@*/ unsigned char * digest)
 int mdbinfile(const char * fn, /*@out@*/ unsigned char * bindigest)
        /*@modifies bindigest, fileSystem @*/
 {
-    return domd5(fn, bindigest, 0, 0);
-}
-
-/**
- * Return (broken!) MD5 sum of file as ASCII string.
- * @deprecated Here for compatibility with old (broken) versions of RPM.
- * @todo Eliminate, use beecrypt instead.
- * @param fn           file name
- * @retval digest      MD5 digest
- * @return             0 on success, 1 on error
- */
-/*@unused@*/ static inline
-int mdfileBroken(const char * fn, /*@out@*/ unsigned char * digest)
-       /*@modifies digest, fileSystem @*/
-{
-    return domd5(fn, digest, 1, 1);
-}
-
-/**
- * Return (broken!) MD5 sum of file as binary data.
- * @deprecated Here for compatibility with old (broken) versions of RPM.
- * @todo Eliminate, use beecrypt instead.
- * @param fn           file name
- * @retval bindigest   MD5 digest
- * @return             0 on success, 1 on error
- */
-/*@unused@*/ static inline
-int mdbinfileBroken(const char * fn, /*@out@*/ unsigned char * bindigest)
-       /*@modifies bindigest, fileSystem @*/
-{
-    return domd5(fn, bindigest, 0, 1);
+    return domd5(fn, bindigest, 0);
 }
 
 /**
+ * Split string into fields separated by a character.
+ * @param str          string
+ * @param length       length of string
+ * @param sep          separator character
+ * @return             (malloc'd) argv array
  */
 /*@only@*/ char ** splitString(const char * str, int length, char sep)
        /*@*/;
 
 /**
+ * Free split string argv array.
+ * @param list         argv array
  */
 void freeSplitString( /*@only@*/ char ** list)
        /*@modifies list @*/;
@@ -120,21 +95,27 @@ void freeSplitString( /*@only@*/ char ** list)
 }
 
 /**
+ * Check if file esists using stat(2).
+ * @param urlfn                file name (may be URL)
+ * @return             1 if file exists, 0 if not
  */
 int rpmfileexists(const char * urlfn)
        /*@modifies fileSystem @*/;
 
-/*
- * These are like the libc functions, but they malloc() the space which
- * is needed.
- */
-
 /**
+ * Like the libc function, but malloc()'s the space needed.
+ * @param name         variable name
+ * @param value                variable value
+ * @param overwrte     should an existing variable be changed?
+ * @return             0 on success
  */
 int dosetenv(const char * name, const char * value, int overwrite)
        /*@modifies fileSystem @*/;
 
 /**
+ * Like the libc function, but malloc()'s the space needed.
+ * @param str          "name=value" string
+ * @return             0 on success
  */
 int doputenv(const char * str)
        /*@modifies fileSystem @*/;
@@ -165,16 +146,21 @@ int makeTempFile(/*@null@*/ const char * prefix,
        /*@modifies fileSystem @*/;
 
 /**
+ * Convert absolute path tag to (dirname,basename,dirindex) tags.
+ * @param h            header
  */
 void compressFilelist(Header h)
        /*@modifies h @*/;
 
 /**
+ * Convert (dirname,basename,dirindex) tags to absolute path tag.
+ * @param h            header
  */
 void expandFilelist(Header h)
        /*@modifies h @*/;
 
 /**
+ * @param h            header
  */
 void buildOrigFileList(Header h, /*@out@*/ const char *** fileListPtr, 
                        /*@out@*/ int * fileCountPtr)
@@ -191,6 +177,9 @@ int rpmGlob(const char * patterns, /*@out@*/ int * argcPtr,
                /*@modifies *argcPtr, *argvPtr, fileSystem @*/;
 
 /**
+ * Retrofit a Provides: name = version-release dependency into legacy
+ * packages.
+ * @param h            header
  */
 void providePackageNVR(Header h)
        /*@modifies h @*/;
index 1e62d75..32ba810 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -5,11 +5,10 @@
 
 #include "system.h"
 
-#include <rpmlib.h>
+#include "psm.h"
 #include <rpmmacro.h>
 #include <rpmurl.h>
 
-#include "psm.h"
 #include "rpmlead.h"           /* writeLead proto */
 #include "signature.h"         /* signature constants */
 #include "misc.h"
index a88b0de..361db1a 100644 (file)
--- a/lib/psm.h
+++ b/lib/psm.h
@@ -6,9 +6,8 @@
  * Package state machine to handle a package from a transaction set.
  */
 
-#include <rpmlib.h>
-#include "depends.h"
 #include "fsm.h"
+#include "depends.h"
 
 /**
  */
index 3194a31..0fd0659 100644 (file)
@@ -301,7 +301,7 @@ typedef enum rpmTag_e {
     RPMTAG_CHANGELOGTIME       = 1080,
     RPMTAG_CHANGELOGNAME       = 1081,
     RPMTAG_CHANGELOGTEXT       = 1082,
-    RPMTAG_BROKENMD5           = 1083, /*!< internal */
+    RPMTAG_BROKENMD5           = 1083, /*!< internal - obsolete */
     RPMTAG_PREREQ              = 1084, /*!< internal */
     RPMTAG_PREINPROG           = 1085,
     RPMTAG_POSTINPROG          = 1086,
@@ -325,7 +325,7 @@ typedef enum rpmTag_e {
     RPMTAG_AUTOREQ             = 1103, /*!< internal */
     RPMTAG_AUTOPROV            = 1104, /*!< internal */
 /*@-enummemuse@*/
-    RPMTAG_CAPABILITY          = 1105, /*!< internal obsolete */
+    RPMTAG_CAPABILITY          = 1105, /*!< internal obsolete */
 /*@=enummemuse@*/
     RPMTAG_SOURCEPACKAGE       = 1106, /*!< internal */
 /*@-enummemuse@*/
@@ -335,7 +335,7 @@ typedef enum rpmTag_e {
     RPMTAG_BUILDREQUIRES       = 1109, /*!< internal */
     RPMTAG_BUILDCONFLICTS      = 1110, /*!< internal */
 /*@-enummemuse@*/
-    RPMTAG_BUILDMACROS         = 1111, /*!< internal */
+    RPMTAG_BUILDMACROS         = 1111, /*!< internal - unused */
 /*@=enummemuse@*/
     RPMTAG_PROVIDEFLAGS                = 1112,
     RPMTAG_PROVIDEVERSION      = 1113,
index 2f7ccc0..898719f 100644 (file)
@@ -307,18 +307,11 @@ static int addCanon(canonEntry * table, int * tableLen, char * line,
     const char * tshort_name;
     int tnum;
 
-#ifdef DYING
-    if (! *tableLen) {
-       *tableLen = 2;
-       *table = xmalloc(2 * sizeof(struct canonEntry_s));
-    } else
-#endif
-    {
-       (*tableLen) += 2;
-       /*@-unqualifiedtrans@*/
-       *table = xrealloc(*table, sizeof(struct canonEntry_s) * (*tableLen));
-       /*@=unqualifiedtrans@*/
-    }
+    (*tableLen) += 2;
+    /*@-unqualifiedtrans@*/
+    *table = xrealloc(*table, sizeof(struct canonEntry_s) * (*tableLen));
+    /*@=unqualifiedtrans@*/
+
     t = & ((*table)[*tableLen - 2]);
 
     tname = strtok(line, ": \t");
@@ -363,18 +356,11 @@ static int addDefault(defaultEntry * table, int * tableLen, char * line,
 {
     defaultEntry t;
 
-#ifdef DYING
-    if (! *tableLen) {
-       *tableLen = 1;
-       *table = xmalloc(sizeof(struct defaultEntry_s));
-    } else
-#endif
-    {
-       (*tableLen)++;
-       /*@-unqualifiedtrans@*/
-       *table = xrealloc(*table, sizeof(struct defaultEntry_s) * (*tableLen));
-       /*@=unqualifiedtrans@*/
-    }
+    (*tableLen)++;
+    /*@-unqualifiedtrans@*/
+    *table = xrealloc(*table, sizeof(struct defaultEntry_s) * (*tableLen));
+    /*@=unqualifiedtrans@*/
+
     t = & ((*table)[*tableLen - 1]);
 
     /*@-temptrans@*/
index 29abe7d..b56a312 100644 (file)
@@ -860,10 +860,6 @@ rpmVerifySignature(const char * file, int_32 sigTag, const void * sig,
     case RPMSIGTAG_MD5:
        return verifyMD5Signature(file, sig, result, mdbinfile);
        /*@notreached@*/ break;
-    case RPMSIGTAG_LEMD5_1:
-    case RPMSIGTAG_LEMD5_2:
-       return verifyMD5Signature(file, sig, result, mdbinfileBroken);
-       /*@notreached@*/ break;
     case RPMSIGTAG_PGP5:       /* XXX legacy */
     case RPMSIGTAG_PGP:
        return verifyPGPSignature(file, sig, count, result);
@@ -871,6 +867,8 @@ rpmVerifySignature(const char * file, int_32 sigTag, const void * sig,
     case RPMSIGTAG_GPG:
        return verifyGPGSignature(file, sig, count, result);
        /*@notreached@*/ break;
+    case RPMSIGTAG_LEMD5_1:
+    case RPMSIGTAG_LEMD5_2:
     default:
        sprintf(result, "Do not know how to verify sig type %d\n", sigTag);
        return RPMSIG_UNKNOWN;
index c64364f..bcff118 100644 (file)
@@ -4,10 +4,9 @@
 
 #include "system.h"
 
-#include <rpmlib.h>
+#include "psm.h"
 #include <rpmmacro.h>  /* XXX for rpmExpand */
 
-#include "psm.h"
 #include "fprint.h"
 #include "rpmhash.h"
 #include "misc.h" /* XXX stripTrailingChar, splitString, currentDirectory */
@@ -47,6 +46,8 @@ extern const char * chroot_prefix;
 /*@access rpmProblemSet@*/
 /*@access rpmProblem@*/
 
+/**
+ */
 struct diskspaceInfo {
     dev_t dev;                 /*!< file system device number. */
     signed long bneeded;       /*!< no. of blocks needed. */
@@ -56,7 +57,9 @@ struct diskspaceInfo {
     signed long iavail;                /*!< no. of inodes available. */
 };
 
-/* Adjust for root only reserved space. On linux e2fs, this is 5%. */
+/**
+ * Adjust for root only reserved space. On linux e2fs, this is 5%.
+ */
 #define        adj_fs_blocks(_nb)      (((_nb) * 21) / 20)
 
 /* argon thought a shift optimization here was a waste of time...  he's
@@ -65,6 +68,8 @@ struct diskspaceInfo {
 
 #define XSTRCMP(a, b) ((!(a) && !(b)) || ((a) && (b) && !strcmp((a), (b))))
 
+/**
+ */
 static /*@null@*/ void * freeFl(rpmTransactionSet ts,
                /*@only@*/ /*@null@*/ TFI_t flList)
        /*@*/
@@ -119,6 +124,8 @@ int rpmtransGetKeys(const rpmTransactionSet ts, const void *** ep, int * nep)
     return rc;
 }
 
+/**
+ */
 static rpmProblemSet psCreate(void)
        /*@*/
 {
@@ -131,6 +138,8 @@ static rpmProblemSet psCreate(void)
     return probs;
 }
 
+/**
+ */
 static void psAppend(rpmProblemSet probs, rpmProblemType type,
                const struct availablePackage * alp,
                const char * dn, const char *bn,
@@ -196,6 +205,8 @@ static void psAppend(rpmProblemSet probs, rpmProblemType type,
     }
 }
 
+/**
+ */
 static int archOkay(Header h)
        /*@*/
 {
@@ -227,6 +238,8 @@ static int archOkay(Header h)
     return 1;
 }
 
+/**
+ */
 static int osOkay(Header h)
        /*@*/
 {
@@ -266,6 +279,8 @@ void rpmProblemSetFree(rpmProblemSet probs)
     free(probs);
 }
 
+/**
+ */
 static /*@observer@*/ const char *const ftstring (fileTypes ft)
        /*@*/
 {
@@ -282,6 +297,8 @@ static /*@observer@*/ const char *const ftstring (fileTypes ft)
     /*@notreached@*/
 }
 
+/**
+ */
 static fileTypes whatis(uint_16 mode)
        /*@*/
 {
@@ -369,11 +386,7 @@ static Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
        return headerLink(origH);
     }
 
-#ifdef DYING
-    h = headerCopy(origH);
-#else
     h = headerLink(origH);
-#endif
 
     relocations = alloca(sizeof(*relocations) * numRelocations);
 
@@ -721,7 +734,8 @@ static Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
     return h;
 }
 
-/*
+/**
+ * Filter a problem set.
  * As the problem sets are generated in an order solely dependent
  * on the ordering of the packages in the transaction, and that
  * ordering can't be changed, the problem sets must be parallel to
@@ -729,6 +743,10 @@ static Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
  * target set, given the operations available on transaction set.
  * This is good, as it lets us perform this trim in linear time, rather
  * then logarithmic or quadratic.
+ *
+ * @param filter       filter
+ * @param target       problem set
+ * @return             0 no problems, 1 if problems remain
  */
 static int psTrim(rpmProblemSet filter, rpmProblemSet target)
        /*@modifies target @*/
@@ -753,7 +771,7 @@ static int psTrim(rpmProblemSet filter, rpmProblemSet target)
        }
 
        if ((t - target->probs) == target->numProblems) {
-           /* this can't happen ;-) lets be sane if it doesn though */
+           /* this can't happen ;-) let's be sane if it doesn though */
            break;
        }
 
@@ -767,6 +785,8 @@ static int psTrim(rpmProblemSet filter, rpmProblemSet target)
     return gotProblems;
 }
 
+/**
+ */
 static int sharedCmp(const void * one, const void * two)
        /*@*/
 {
@@ -781,11 +801,13 @@ static int sharedCmp(const void * one, const void * two)
     return 0;
 }
 
+/**
+ */
 static fileAction decideFileFate(const char * dirName,
                        const char * baseName, short dbMode,
                        const char * dbMd5, const char * dbLink, short newMode,
                        const char * newMd5, const char * newLink, int newFlags,
-                       int brokenMd5, rpmtransFlags transFlags)
+                       rpmtransFlags transFlags)
        /*@*/
 {
     char buffer[1024];
@@ -834,10 +856,7 @@ static fileAction decideFileFate(const char * dirName,
     }
 
     if (dbWhat == REG) {
-       if (brokenMd5)
-           rc = mdfileBroken(filespec, buffer);
-       else
-           rc = mdfile(filespec, buffer);
+       rc = mdfile(filespec, buffer);
 
        if (rc) {
            /* assume the file has been removed, don't freak */
@@ -878,6 +897,8 @@ static fileAction decideFileFate(const char * dirName,
     return save;
 }
 
+/**
+ */
 static int filecmp(short mode1, const char * md51, const char * link1,
                   short mode2, const char * md52, const char * link2)
        /*@*/
@@ -895,6 +916,8 @@ static int filecmp(short mode1, const char * md51, const char * link1,
     return 0;
 }
 
+/**
+ */
 static int handleInstInstalledFiles(TFI_t fi, /*@null@*/ rpmdb db,
                                    struct sharedFileInfo * shared,
                                    int sharedCount, int reportConflicts,
@@ -974,7 +997,6 @@ static int handleInstInstalledFiles(TFI_t fi, /*@null@*/ rpmdb db,
                        fi->fmd5s[fileNum],
                        fi->flinks[fileNum],
                        fi->fflags[fileNum],
-                       !headerIsEntry(h, RPMTAG_RPMVERSION),
                        transFlags);
        }
 
@@ -992,6 +1014,8 @@ static int handleInstInstalledFiles(TFI_t fi, /*@null@*/ rpmdb db,
     return 0;
 }
 
+/**
+ */
 static int handleRmvdInstalledFiles(TFI_t fi, /*@null@*/ rpmdb db,
                                    struct sharedFileInfo * shared,
                                    int sharedCount)
@@ -1232,6 +1256,8 @@ static void handleOverlappedFiles(TFI_t fi, hashTable ht,
     if (filespec) free(filespec);
 }
 
+/**
+ */
 static int ensureOlder(struct availablePackage * alp, Header old,
                rpmProblemSet probs)
        /*@modifies alp, probs @*/
@@ -1251,6 +1277,8 @@ static int ensureOlder(struct availablePackage * alp, Header old,
     return rc;
 }
 
+/**
+ */
 static void skipFiles(const rpmTransactionSet ts, TFI_t fi)
        /*@modifies fi @*/
 {
@@ -1524,9 +1552,6 @@ int rpmRunTransactions(   rpmTransactionSet ts,
     int i, j;
     int ourrc = 0;
     struct availablePackage * alp;
-#ifdef DYING
-    Header * hdrs;
-#endif
     int totalFileCount = 0;
     hashTable ht;
     TFI_t fi;
@@ -1625,10 +1650,6 @@ int rpmRunTransactions(  rpmTransactionSet ts,
        if (dip) ts->di[i].bsize = 0;
     }
 
-#ifdef DYING
-    hdrs = alloca(sizeof(*hdrs) * ts->addedPackages.size);
-#endif
-
     /* ===============================================
      * For packages being installed:
      * - verify package arch/os.
@@ -1720,22 +1741,12 @@ int rpmRunTransactions( rpmTransactionSet ts,
            fi->ap = tsGetAlp(tsi);
            fi->record = 0;
            loadFi(fi->ap->h, fi);
-           if (fi->fc == 0) {
-#ifdef DYING
-               hdrs[i] = headerLink(fi->h);
-#endif
+           if (fi->fc == 0)
                continue;
-           }
 
-#ifdef DYING
-           /* Allocate file actions (and initialize to FA_UNKNOWN) */
-           fi->actions = xcalloc(fi->fc, sizeof(*fi->actions));
-           hdrs[i] = relocateFileList(ts, fi, fi->ap, fi->h, fi->actions);
-#else
            {   Header foo = relocateFileList(ts, fi, fi->ap, fi->h, fi->actions);
                foo = headerFree(foo);
            }
-#endif
 
            /* Skip netshared paths, not our i18n files, and excluded docs */
            skipFiles(ts, fi);
@@ -1765,11 +1776,6 @@ int rpmRunTransactions(  rpmTransactionSet ts,
     }
     tsi = tsFreeIterator(tsi);
 
-#ifdef DYING
-    /* Open all database indices before installing. */
-    (void) rpmdbOpenAll(ts->rpmdb);
-#endif
-
     if (!ts->chrootDone) {
        (void) chdir("/");
        /*@-unrecog -superuser @*/
@@ -1978,16 +1984,6 @@ int rpmRunTransactions(  rpmTransactionSet ts,
     {
        *newProbs = ts->probs;
 
-#ifdef DYING
-       for (alp = ts->addedPackages.list, fi = ts->flList;
-               (alp - ts->addedPackages.list) < ts->addedPackages.size;
-               alp++, fi++)
-       {
-           hdrs[alp - ts->addedPackages.list] =
-               headerFree(hdrs[alp - ts->addedPackages.list]);
-       }
-#endif
-
        ts->flList = freeFl(ts, ts->flList);
        ts->flEntries = 0;
        /*@-nullstate@*/
@@ -2040,11 +2036,8 @@ assert(alp == fi->ap);
                if (alp->fd) {
                    rpmRC rpmrc;
 
-#ifdef DYING
-                   hdrs[i] = headerFree(hdrs[i]);
-#else
                    h = headerFree(h);
-#endif
+
                    /*@-mustmod@*/      /* LCL: segfault */
                    rpmrc = rpmReadPackageHeader(alp->fd, &h, NULL, NULL, NULL);
                    /*@=mustmod@*/
@@ -2054,15 +2047,10 @@ assert(alp == fi->ap);
                        alp->fd = NULL;
                        ourrc++;
                    } else {
-#ifdef DYING
-                       hdrs[i] = relocateFileList(ts, fi, alp, h, NULL);
-                       h = headerFree(h);
-#else
                        Header foo = relocateFileList(ts, fi, alp, h, NULL);
                        h = headerFree(h);
                        h = headerLink(foo);
                        foo = headerFree(foo);
-#endif
                    }
                    if (alp->fd) gotfd = 1;
                }
@@ -2075,11 +2063,7 @@ assert(alp == fi->ap);
                    hsave = headerLink(fi->h);
                    fi->h = headerFree(fi->h);
                }
-#ifdef DYING
-               fi->h = headerLink(hdrs[i]);
-#else
                fi->h = headerLink(h);
-#endif
                if (alp->multiLib)
                    ts->transFlags |= RPMTRANS_FLAG_MULTILIB;
 
@@ -2098,11 +2082,7 @@ assert(alp == fi->ap);
                lastFailed = i;
            }
 
-#ifdef DYING
-           hdrs[i] = headerFree(hdrs[i]);
-#else
            h = headerFree(h);
-#endif
 
            if (gotfd) {
                (void)ts->notify(fi->h, RPMCALLBACK_INST_CLOSE_FILE, 0, 0,
index 2d05dd9..9d6d0d8 100644 (file)
@@ -5,9 +5,9 @@
 
 #include "system.h"
 
+#include "psm.h"
 #include <rpmcli.h>
 
-#include "psm.h"
 #include "misc.h"      /* XXX for uidToUname() and gnameToGid() */
 #include "debug.h"
 
 /*@access FD_t*/       /* XXX compared with NULL */
 /*@access rpmdb*/      /* XXX compared with NULL */
 
-static int _ie = 0x44332211;
-static union _vendian {
-/*@unused@*/ int i;
-    char b[4];
-} *_endian = (union _vendian *)&_ie;
-#define        IS_BIG_ENDIAN()         (_endian->b[0] == '\x44')
-#define        IS_LITTLE_ENDIAN()      (_endian->b[0] == '\x11')
-
 #define S_ISDEV(m) (S_ISBLK((m)) || S_ISCHR((m)))
 
 int rpmVerifyFile(const char * root, Header h, int filenum,
@@ -41,27 +33,6 @@ int rpmVerifyFile(const char * root, Header h, int filenum,
     int count;
     int rc;
     struct stat sb;
-    int_32 useBrokenMd5;
-
-  if (IS_BIG_ENDIAN()) {       /* XXX was ifdef WORDS_BIGENDIAN */
-    int_32 * brokenPtr;
-    if (!hge(h, RPMTAG_BROKENMD5, NULL, (void **) &brokenPtr, NULL)) {
-       HAE_t hae = (HAE_t)headerAddEntry;
-       const char * rpmVersion;
-
-       if (hge(h, RPMTAG_RPMVERSION, NULL, (void **) &rpmVersion, NULL)) {
-           useBrokenMd5 = ((rpmvercmp(rpmVersion, "2.3.3") >= 0) &&
-                           (rpmvercmp(rpmVersion, "2.3.8") <= 0));
-       } else {
-           useBrokenMd5 = 1;
-       }
-       (void) hae(h, RPMTAG_BROKENMD5, RPM_INT32_TYPE, &useBrokenMd5, 1);
-    } else {
-       useBrokenMd5 = *brokenPtr;
-    }
-  } else {
-    useBrokenMd5 = 0;
-  }
 
     (void) hge(h, RPMTAG_FILEMODES, NULL, (void **) &modeList, &count);
     if (hge(h, RPMTAG_FILEFLAGS, NULL, (void **) &fileFlags, NULL))
@@ -174,9 +145,6 @@ int rpmVerifyFile(const char * root, Header h, int filenum,
        if (!hge(h, RPMTAG_FILEMD5S, &mdt, (void **) &md5List, NULL))
            *result |= RPMVERIFY_MD5;
        else {
-           if (useBrokenMd5)
-               rc = mdfileBroken(filespec, md5sum);
-           else
                rc = mdfile(filespec, md5sum);
 
            if (rc)
index 1dafcd0..67e28de 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-07-24 10:02+0100\n"
 "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -1661,7 +1661,7 @@ msgstr "Nemohu p
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
@@ -1691,7 +1691,7 @@ msgstr "Nemohu p
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
@@ -2053,59 +2053,59 @@ msgstr "Nenalezeny 
 msgid "Package has no %%description: %s\n"
 msgstr "Balíèek nemá ¾ádné %%description: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "øádek %d: ©patné èíslo: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "øádek %d: ©patné èíslo %s: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "øádek %d: ©patné èíslo %s: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba: 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "©patné magické èíslo"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "©patná nebo neèitelná hlavièka"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Neznámý typ souboru"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "Chybìjící hardlink(y)"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "MD5 souèet nesouhlasí"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Interní chyba"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr "selhal - "
 
@@ -2266,37 +2266,37 @@ msgstr "========= Adres
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "vytvoøen adresáø %s s právy %04o.\n"
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -2306,7 +2306,7 @@ msgstr "%s vytvo
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
@@ -2386,7 +2386,7 @@ msgstr "na konci v
 msgid "(unknown type)"
 msgstr "(neznámý typ)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
@@ -2849,74 +2849,74 @@ msgstr "p
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nemohu zapsat do %%%s %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
@@ -3233,88 +3233,88 @@ msgstr "chyb
 msgid "missing architecture name at %s:%d\n"
 msgstr "chybí název architektury u %s:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Neúplný datový øádek %s:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Pøíli¹ mnoho parametrù v datovém øádku %s:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Chybné èíslo architektury nebo OS: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Neúplný standardní øádek %s:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Pøíli¹ mnoho parametrù ve výchozím øádku u %s:%d\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Nemohu expandovat %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Nemohu èíst %s, HOME je pøíli¹ velký.\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nemohu otevøít %s pro ètení: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Nemohu èíst %s: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "chybí ':' (nalezeno na 0x%02x) v %s:%d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "chybí parametr pro %s u %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "expanze %s selhala na %s:%d \"%s\"\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "nemohu otevøít soubor %s na %s:%d: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "chybí architektura pro %s u %s:%d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "chybná volba '%s' u %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznámý systém: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Zkontaktujte prosím rpm-list@redhat.com\n"
 
@@ -3440,72 +3440,72 @@ msgstr "Mus
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== relokace\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d vynechávám %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d pøemís»uji %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "vynechávám multilib cestu %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "vynechávám %s %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "pøemís»uji %s do %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "pøemís»uji adresáø %s do %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "balíèek neobsahuje ani u¾ivatelská jména ani seznam id (nemìlo by se nikdy "
 "stát)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "balíèek neobsahuje ani jména skupin ani seznam id (nemìlo by se nikdy stát)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "chybí      %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: kontrola digestu v hlavièce selhala\n"
index 0339ecf..f4678ec 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-04-05 23:03GMT\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -1662,7 +1662,7 @@ msgstr "Kunne ikke l
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -1692,7 +1692,7 @@ msgstr "Kunne ikke l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -2057,60 +2057,60 @@ msgstr "Ingen arkitekturer, der kan opbygges\n"
 msgid "Package has no %%description: %s\n"
 msgstr "Pakke har ingen %%description: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linie %d: Ugyldigt tal: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linie %d: Ugyldigt 'no%s'-tal: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linie %d: Ugyldigt %s-tal: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(fejl 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Ugyldigt magisk tal"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Ugyldigt/ulæseligt hoved"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Hovedstørrelse er for stor"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Ukendt filtype"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "Manglende hård lænke"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "MD5-sum stemmer ikke"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Intern fejl"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " mislykkedes - "
 
@@ -2271,37 +2271,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -2311,7 +2311,7 @@ msgstr "%s oprettet som %s\n"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d understøttes ikke\n"
@@ -2391,7 +2391,7 @@ msgstr "| forventet ved slutningen af udtryk"
 msgid "(unknown type)"
 msgstr "(ukendt type)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "fejl ved oprettelse af midlertidig fil %s\n"
@@ -2873,76 +2873,76 @@ msgstr "pakke %s pr
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ukendt fejl %d under arbejdet med pakken %s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke oprette %s: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kunne ikke skrive til %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
@@ -3259,90 +3259,90 @@ msgstr "manglende andet ':' ved %s:%d\n"
 msgid "missing architecture name at %s:%d\n"
 msgstr "manglende navn på arkitektur ved %s:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Ufærdig datalinie ved %s:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "For mange parametre på datalinie ved %s:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Ugyldigt arch/os-tal: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Ufuldstændig standardlinie ved %s:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "For mange parametre i standardlinie ved %s:%d\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Kan ikke udfolde %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Kunne ikke læse %s, HOME er for stor.\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åbne %s for læsning: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Kunne ikke læse %s: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "manglende  ':' (fandt 0x%02x) ved %s:%d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "manglende parameter til %s ved %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "%s-udvidelse mislykkedes ved %s:%d \"%s\"\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "kan ikke åbne %s ved %s:%d: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "manglende arkitektur for %s ved %s:%d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ugyldig tilvalg '%s' ved %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 "Ukendt system: %s\n"
 "\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontakt venligst rpm-list@redhat.com (på engelsk)\n"
 
@@ -3467,73 +3467,73 @@ msgstr "Du skal angive \"%%_gpg_name\" i din makrofil\n"
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== gemmer omrokeringer\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ekskluderer %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omrokerer %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ekskluderer %s %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "omrokerer %s til %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "omrokerer kataloget %s til %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "pakken har hverken en liste over brugernavne eller id (det burde ikke kunne "
 "ske)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "pakken har hverken en liste over gruppenavne eller id (det burde ikke kunne "
 "ske)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "manglende  %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 086137b..f317bd7 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1815,7 +1815,7 @@ msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
@@ -1850,7 +1850,7 @@ msgstr "Nicht m
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2234,62 +2234,62 @@ msgstr "Paket-Architektur nicht 
 msgid "Package has no %%description: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "Fehler: "
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(unbekannter Typ)"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "fehlender ':' bei %s:%d"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 #, fuzzy
 msgid "Internal error"
 msgstr "Fataler Fehler: "
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 #, fuzzy
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
@@ -2453,37 +2453,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -2493,7 +2493,7 @@ msgstr "kann Datei %s nicht 
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2576,7 +2576,7 @@ msgstr "| am Ende des Ausdrucks erwartet"
 msgid "(unknown type)"
 msgstr "(unbekannter Typ)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3097,77 +3097,77 @@ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "Keine Stufen ausführen"
@@ -3495,91 +3495,91 @@ msgstr "fehlendes zweites ':' bei %s:%d"
 msgid "missing architecture name at %s:%d\n"
 msgstr "fehlender Name cer Architektur bei %s:%d"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Unvollständige Datenzeile bei %s:%d"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Zu viele Argumente in der Datenzeile bei %s:%d"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Unzureichende arch/os Zahl: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Unvollständige Standardzeile bei %s:%d"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Zu viele Argumente in der Standardzeile bei %s:%d"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
 # , c-format
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "fehlender ':' bei %s:%d"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "fehlendes Argument für %s bei %s:%d"
 
 # , c-format
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "fehlende Architektur für %s bei %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "unzureichende Option '%s' bei %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3718,72 +3718,72 @@ msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
 # , c-format
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Hole %s heraus\n"
 
 # , c-format
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 2e91535..13839d3 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -1705,7 +1705,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
@@ -1735,7 +1735,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2096,62 +2096,62 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "virhe: "
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "puuttuva ':', %s:%d"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 #, fuzzy
 msgid "Internal error"
 msgstr "vakava virhe: "
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 #, fuzzy
 msgid " failed - "
 msgstr "pgp epäonnistui"
@@ -2310,37 +2310,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -2350,7 +2350,7 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2432,7 +2432,7 @@ msgstr "odotin '}'-merkki
 msgid "(unknown type)"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -2944,75 +2944,75 @@ msgstr "paketti %s-%s-%s  sis
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "älä suorita mitään vaiheita"
@@ -3336,88 +3336,88 @@ msgstr "toinen ':' puuttuu, %s:%d"
 msgid "missing architecture name at %s:%d\n"
 msgstr "puuttuva arkkitehtuurin nimi, %s:%d"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Epätäydellinen datarivi, %s:%d"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "liian monta parametriä datarivillä %s:%d"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Epätäydellinen oletusrivi, %s:%d"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "liian monta parametriä oletusrivillä %s:%d"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "En voi avata %s luettavaksi: %s."
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "En voi lukea %s: %s."
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "puuttuva ':', %s:%d"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "%s:n puuttuva parametri %s:%d"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "huono parametri '%s', %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3556,69 +3556,69 @@ msgstr "Sinun pit
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Haen: %s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index e51ef62..4802716 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1772,7 +1772,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1802,7 +1802,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2163,59 +2163,59 @@ msgstr "%s ne peut tre construit sur cette architecture\n"
 msgid "Package has no %%description: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 #, fuzzy
 msgid " failed - "
 msgstr "La construction a chou.\n"
@@ -2374,37 +2374,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2414,7 +2414,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2496,7 +2496,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3012,76 +3012,76 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3403,88 +3403,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3619,69 +3619,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 1c0fe4d..336ddf9 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-01-13 22:31+0100\n"
 "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
 "Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -1606,7 +1606,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1636,7 +1636,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1996,59 +1996,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2206,37 +2206,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2246,7 +2246,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2326,7 +2326,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2784,74 +2784,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3168,88 +3168,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3374,69 +3374,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index a168cdd..52681c7 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-07-12 13:25+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
@@ -1630,7 +1630,7 @@ msgstr "Get ekki lesi
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
@@ -1660,7 +1660,7 @@ msgstr "Get ekki lesi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
@@ -2020,59 +2020,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "Harðar tengingar vantar"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2230,37 +2230,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -2270,7 +2270,7 @@ msgstr "%s b
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2350,7 +2350,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2809,74 +2809,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "get ekki ritað í %%%s %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3193,88 +3193,88 @@ msgstr "vantar seinni ':' 
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Get ekki opnað %s til lesturs: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Get ekki lesið %s: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "viðfang vantar fyrir %s á %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "get ekki opnað %s á %s:%d: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ólöglegur rofi '%s' á %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3399,69 +3399,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr "í pakkanum eru engir notandalistar (þetta ætti aldrei að koma fyrir)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr "í pakkanum eru engir hópalistar (þetta ætti aldrei að koma fyrir)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "vantar     %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 9435c16..c5947c5 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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.169 2001/09/25 16:21:54 jbj Exp $
+# $Id: ja.po,v 1.170 2001/09/25 20:51:39 jbj Exp $
 #: rpm.c:227
 #, c-format
 msgid "rpm: %s\n"
@@ -1733,7 +1733,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
@@ -1763,7 +1763,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
@@ -2127,62 +2127,62 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤ÊÈÖ¹æ: %s"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "(¥¨¥é¡¼ 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 #, fuzzy
 msgid "Unknown file type"
 msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 #, fuzzy
 msgid "Internal error"
 msgstr "ÆâÉô¥¨¥é¡¼"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 #, fuzzy
 msgid " failed - "
 msgstr "¼ºÇÔ - "
@@ -2343,37 +2343,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -2384,7 +2384,7 @@ msgstr "
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
@@ -2464,7 +2464,7 @@ msgstr "
 msgid "(unknown type)"
 msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
@@ -2993,77 +2993,77 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
@@ -3385,88 +3385,88 @@ msgstr "2
 msgid "missing architecture name at %s:%d\n"
 msgstr "%s:%d ¤Ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã̾¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤¬ÉÔ´°Á´¤Ç¤¹"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤Ë°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "ÉÔÀµ¤Ê arch/os ÈÖ¹æ: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "%s:%d ¤ÇÉÔ´°Á´¤Ê¥Ç¥Õ¥©¥ë¥È¹Ô"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "%s:%d ¤Ç¥Ç¥Õ¥©¥ë¥È¹Ô¤Ï°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "¿­Ä¥¤Ç¤­¤Þ¤»¤ó %s"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "%s:%d ¤Ç ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "%s ¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó %s:%d"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "%s ¤Î¿­Ä¥¼ºÇÔ %s:%d \"%s\""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó  %s:%d"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "%s ÍѤΥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
 
@@ -3608,75 +3608,75 @@ msgstr "
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 #, fuzzy
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤Ï ¥æ¡¼¥¶Ì¾¤È id ¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê"
 "¤é¤Ê¤¤)"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 #, fuzzy
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id ¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê"
 "¤é¤Ê¤¤)"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index aadbe33..e212431 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-09-07 22:03+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
@@ -1657,7 +1657,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -1687,7 +1687,7 @@ msgstr "%s 
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
@@ -2049,59 +2049,59 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "ÆÐÅ°Áö¿¡ %%descriptionÀÌ ¾øÀ½: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ ¼ýÀÚÀÔ´Ï´Ù: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ no%s ¼ýÀÚÀÔ´Ï´Ù: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "%d ¹ø° ÁÙ: À߸øµÈ %s ¼ýÀÚÀÔ´Ï´Ù: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(¿À·ù 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "À߸øµÈ magic ÀÔ´Ï´Ù"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "À߸øµÈ/ÀÐÀ» ¼ö ¾ø´Â Çì´õÀÔ´Ï´Ù"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "¾Ë ¼ö ¾ø´Â ÆÄÀÏ À¯ÇüÀÔ´Ï´Ù"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "Çϵ堸µÅ©¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "MD5 ÇÕ°è°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "³»ºÎ ¿À·ù ¹ß»ý"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr "Çì´õ¿¡ ¾ÆÄ«À̺ê ÆÄÀÏÀÌ ¾ø½À´Ï´Ù"
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
@@ -2262,37 +2262,37 @@ msgstr "========= 
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -2302,7 +2302,7 @@ msgstr "%s (
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE Ä«¿îÆ®´Â ¹Ýµå½Ã '1' À̾î¾ß ÇÕ´Ï´Ù.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇϽǠ¼ö ¾ø½À´Ï´Ù\n"
@@ -2382,7 +2382,7 @@ msgstr "ǥ
 msgid "(unknown type)"
 msgstr "(¾Ë ¼ö ¾ø´Â À¯Çü)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "ÀӽàÆÄÀÏ %s (À»)¸¦ »ý¼ºÇϴ µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
@@ -2852,80 +2852,80 @@ msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 "%2$s ÆÐÅ°Áö¸¦ Ã³¸®Çϴ °úÁ¤¿¡¼­ ¾Ë ¼ö ¾ø´Â ¿À·ù %1$d (ÀÌ)°¡ ¹ß»ýÇß½À´Ï´Ù"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s %s (À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ¿ä±¸µË´Ï´Ù, ¹ÙÀ̳ʸ®¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "%2$s-%3$s-%4$s ÀÇ %1$s ½ºÅ©¸³Æ®¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, waitpid°¡ %"
 "5$s (À»)¸¦ ¹ÝȯÇÏ¿´½À´Ï´Ù \n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "%2$s-%3$s-%4$s ÀÇ %1$s ½ºÅ©¸³Æ®¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %"
 "5$d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s (ÀÌ)°¡ %d ÀÇ ÆÄÀÏÀ» °®°í ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ®¸´(scriptlet)°¡ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s (À»)¸¦ »ý·«ÇÕ´Ï"
 "´Ù\n"
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
@@ -3242,88 +3242,88 @@ msgstr "%s 
 msgid "missing architecture name at %s:%d\n"
 msgstr "%s ¿¡¼­ ¾ÆÅ°ÅØÃÄ À̸§À» Ã£À» ¼ö ¾øÀ½:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "%s ÀÇ µ¥ÀÌÅÍ Ç׸ñ(line)ÀÌ ºÒÃæºÐÇÔ:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "%s ÀÇ µ¥ÀÌÅÍ Ç׸ñ(line)¿¡ Àμö°¡ ³Ê¹« ¸¹À½:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "À߸øµÈ ¾ÆÅ°ÅØÃÄ/¿î¿µÃ¼Á¦ ¹øÈ£: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "%s ÀÇ ±âº» Ç׸ñ(line)ÀÌ ºÒÃæºÐÇÔ:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "%s ÀÇ ±âº» Ç׸ñ(line)¿¡ Àμö°¡ ³Ê¹« ¸¹À½:%d\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "%s (À»)¸¦ È®Àå(expand)ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "%s (À»)¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù, HOMEÀÌ ³Ê¹« Å®´Ï´Ù.\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "%s (À»)¸¦ Àдµ¥ ½ÇÆÐÇÔ: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "%2$s ¿¡¼­ ':' (0x%1$02x Ã£À½) À» Ã£À» ¼ö ¾øÀ½:%3$d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "%2$s ¿¡¼­ %1$s (À»)¸¦ À§ÇÑ Àμö¸¦ Ã£À» ¼ö ¾øÀ½:%3$d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "%2$s ÀÇ %1$s È®Àå(expansion)ÀÌ ½ÇÆÐÇÔ:%3$d \"%4$s\"\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "%2$s ÀÇ %1$s (À»)¸¦ ¿­ ¼ö ¾øÀ½:%3$d: %4$s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "%2$s ¿¡¼­ %1$s (À»)¸¦ À§ÇÑ ¾ÆÅ°ÅØÃĸ¦ Ã£À» ¼ö ¾øÀ½:%3$d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "%2$s ¿¡ À߸øµÈ ¿É¼Ç '%1$s':%3$d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "¾Ë ¼ö ¾ø´Â ½Ã½ºÅÛ: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "rpm-list@redhat.com À¸·Î ¿¬¶ôÁֽñ⠹ٶø´Ï´Ù\n"
 
@@ -3452,71 +3452,71 @@ msgstr "
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_pgp_name\" À» ¼³Á¤ÇØ ÁּžߠÇÕ´Ï´Ù\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== Àç¹èÄ¡\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d Á¦¿Ü(exclude)  %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s (À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¿¡¼­ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s µð·ºÅ丮¸¦ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "ÆÐÅ°Áö¿¡ »ç¿ëÀÚ À̸§°ú id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù (Àý´ë ÀÌ·¸°Ô µÇ¾î¼­´Â ¾ÈµË´Ï´Ù)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "ÆÐÅ°Áö¿¡ ±×·ì À̸§°ú id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù (Àý´ë ÀÌ·¸°Ô µÇ¾î¼­´Â ¾ÈµË´Ï´Ù)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "´ÙÀ½À» Ã£À» ¼ö ¾ø½À´Ï´Ù    %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s ¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 68479f8..a24c821 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-06-27 12:24+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <no@li.org>\n"
@@ -1655,7 +1655,7 @@ msgstr "Kunne ikke 
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -1685,7 +1685,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -2047,59 +2047,59 @@ msgstr "Ingen kompatible arkitekturer funnet for bygging\n"
 msgid "Package has no %%description: %s\n"
 msgstr "Pakken har ingen %%description: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linje %d: Ugyldig nummer: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linje %d: Ugyldig no%s nummer: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linje %d: Ugyldig %s-nummer: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(feil 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Ugyldig magi"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Ugyldig/ulesbar header"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "For stor header"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Ukjent filtype"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "Mangler hard(e) lenke(er)"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "MD5-sum stemmer ikke"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Intern feil"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " feilet - "
 
@@ -2257,37 +2257,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -2297,7 +2297,7 @@ msgstr "%s opprettet som %s\n"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d ikke støttet\n"
@@ -2377,7 +2377,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr "(ukjent type)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "feil under oppretting av midlertidig fil %s\n"
@@ -2839,74 +2839,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke opprette %%%s %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan ikke skrive til %%%s %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
@@ -3223,88 +3223,88 @@ msgstr "mangler andre ':' ved %s:%d\n"
 msgid "missing architecture name at %s:%d\n"
 msgstr "manglende navn på arkitektur ved %s:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Ukomplett datalinje ved %s:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "For mange argumenter i datalinje ved %s:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Ukomplett standardlinje ved %s:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Kan ikke utvide %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "kunne ikke opprette %s: %s\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "mangler ':' (fant 0x%02X) ved %s:%d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "manglende argumentfor %s ved %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "kan ikke åpne %s ved %s:%d %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "manglende arkitektur for %s ved %s:%d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ugyldig flagg '%s' ved %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3429,69 +3429,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omplasser %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "relokerer %s til %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "relokerer katalog %s til %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "mangler    %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index f750001..0fa49d8 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1712,7 +1712,7 @@ msgstr "Nie mo
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
@@ -1742,7 +1742,7 @@ msgstr "Nie mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -2106,60 +2106,60 @@ msgstr "Nie mo
 msgid "Package has no %%description: %s\n"
 msgstr "Pakiet nie ma %%description: %s"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linia %d: B³êdny numer: %s"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linia %d: b³êdny numer no%s: %d"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linia %d: B³êdny numer %s: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(b³±d 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "B³êdny magic"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "B³êdny/nieczytelny nag³ówek"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Nieznany typ pliku"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "Brak twardego dowi±zania"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
@@ -2318,37 +2318,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "linia %d: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
@@ -2359,7 +2359,7 @@ msgstr "ostrze
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
@@ -2439,7 +2439,7 @@ msgstr "spodziewany | na ko
 msgid "(unknown type)"
 msgstr "(nieznany typ)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
@@ -2947,76 +2947,76 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
@@ -3337,88 +3337,88 @@ msgstr "brak drugiego ':' przy %s:%d"
 msgid "missing architecture name at %s:%d\n"
 msgstr "brak nazwy architektury przy %s:%d"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Niekompletna linia danych przy %s:%d"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Zbyt wiele argumentów w linii danych przy %s:%d"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "B³êdny numer arch/os: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Niekompletna domy¶lna linia przy %s:%d"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Nie mo¿na rozszerzyæ %s"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Odczytanie %s nie powiod³o siê: %s."
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "brak ':' przy %s:%d"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "brak argumentu dla %s przy %s:%d"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "%s: Open nie powiod³o siê\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "nie mo¿na otworzyæ %s przy %s:%d"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "brak architektury dla %s przy %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "b³êdna opcja '%s' przy %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Nieznany system: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
 
@@ -3555,75 +3555,75 @@ msgstr "Musisz ustawi
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 #, fuzzy
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "pakiet nie specyfikuje ani nazwy u¿ytkownika ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 #, fuzzy
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "brak    %s\n"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index d519155..0452ac2 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2000-06-22 01:13+01:00\n"
 "Last-Translator: José Nuno Coelho Sanarra Pires\n"
 "Language-Team: pt <kde@poli.org>\n"
@@ -1643,7 +1643,7 @@ msgstr "N
 msgid "Could not open %s: %s\n"
 msgstr "Não consigo aceder ao %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Não consegui gravar o pacote: %s\n"
@@ -1673,7 +1673,7 @@ msgstr "N
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Não consegui escrever o conteúdo de %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Gravei: %s\n"
@@ -2034,60 +2034,60 @@ msgstr "N
 msgid "Package has no %%description: %s\n"
 msgstr "O pacote não tem uma %%description: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "linha %d: Número inválido: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "linha %d: Número no%s inválido: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linha %d: Número %s inválido: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(erro 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Código de integridade inválido"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Cabeçalho inválido/ilegível"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Tamanho do cabeçalho demasiado grande"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Tipo de ficheiro desconhecido"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "Falta o 'hard link'"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "erro na soma de MD5"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Erro interno"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " falhou - "
 
@@ -2248,37 +2248,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "linha %d: %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gravado como %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "não consigo remover a %s - a directoria não está vazia\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "o rmdir da %s falhou: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "o acesso ao %s falhou: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s criado como %s\n"
@@ -2288,7 +2288,7 @@ msgstr "%s criado como %s\n"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "O tipo de dados %d não é suportado\n"
@@ -2368,7 +2368,7 @@ msgstr "esperado um | no fim da express
 msgid "(unknown type)"
 msgstr "(tipo desconhecido)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "erro ao criar o ficheiro temporário %s\n"
@@ -2844,74 +2844,74 @@ msgstr "a(s) chamada(s) de pr
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "não consigo criar o %s: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "não consigo escrever em %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "pacote: teste dos ficheiros do %s-%s-%s = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "o utilizador %s não existe - a usar o root\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "o grupo %s não existe - a usar o root\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " no ficheiro "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "falhei ao aceder ao %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "O %s falhou\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "a correr os programas de pós-instalação (se existirem)\n"
@@ -3228,88 +3228,88 @@ msgstr "falta o segundo ':' em %s:%d\n"
 msgid "missing architecture name at %s:%d\n"
 msgstr "falta o nome da arquitectura em %s:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Linha de dados incompleta em %s:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Demasiados argumentos na linha de dados em %s:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Número de arq./SO errado: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Linha por omissão incompleta em %s:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Demasiados argumentos na linha por omissão em %s:%d\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Não consigo expandir o %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Não consigo ler o %s, a HOME é demasiado grande.\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Não consegui abrir o %s para leitura: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Não consegui ler o %s: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "falta um ':' (encontrado um 0x%02x) em %s:%d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "faltam argumentos para o %s em %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "a expansão do %s falhou em %s:%d \"%s\"\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "não consigo abrir o %s em %s:%d: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "falta a arquitectura para o %s em %s:%d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "má opção '%s' em %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Sistema desconhecido: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Por favor contacte o rpm-list@redhat.com\n"
 
@@ -3434,69 +3434,69 @@ msgstr "Precisa definir o \"%%_gpg_name\" no seu ficheiro de macros\n"
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Precisa definir o \"%%_pgp_name\" no seu ficheiro de macros\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== mudanças de local\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d excluir o %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d mudar de local %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "a exclur a directoria 'multilib' %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "a excluir o %s %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "a mudar o %s para %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "a mudar a directoria %s para %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignorado devido à opção missingok\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "a excluir a directoria %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr "o pacote não tem o nome de utilizador nem as listas de IDs (nunca deve ocorrer)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr "o pacote não tem o nome do grupo nem as listas de IDs (nunca deve ocorrer)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "falta     %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Dependências não satisfeitas para o %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index c6ae9d9..bb00a44 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 
 # , c-format
 #: build.c:36
@@ -1818,7 +1818,7 @@ msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1853,7 +1853,7 @@ msgstr "No consegui abrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2259,60 +2259,60 @@ msgid "Package has no %%description: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 #, fuzzy
 msgid " failed - "
 msgstr "Construo falhou.\n"
@@ -2475,40 +2475,40 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2518,7 +2518,7 @@ msgstr "No consegui abrir: %s\n"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2601,7 +2601,7 @@ msgid "(unknown type)"
 msgstr ""
 
 # , c-format
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -3114,77 +3114,77 @@ msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "no execute nenhum estgio"
@@ -3527,94 +3527,94 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3752,7 +3752,7 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
@@ -3764,13 +3764,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -3783,7 +3783,7 @@ msgstr "No consegui abrir: %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "RPM verso %s\n"
@@ -3796,23 +3796,23 @@ msgstr "RPM verso %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
 # , c-format
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3825,30 +3825,30 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 406486a..fa24220 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1606,7 +1606,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1636,7 +1636,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1996,59 +1996,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2206,37 +2206,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2246,7 +2246,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2326,7 +2326,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2784,74 +2784,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3168,88 +3168,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3374,69 +3374,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index cc29c0f..4ec1d88 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 795f6f8..e2e4e50 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-08-29 13:55-0400\n"
 "Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
 "Language-Team:  Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -1672,7 +1672,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@@ -1702,7 +1702,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
@@ -2064,59 +2064,59 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(ÏÛÉÂËÁ 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "îÅ×ÅÒÎÙÊ magic"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÆÁÊÌÁ"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "ËÏÎÔÒÏÌØÎÙÅ MD5-ÓÕÍÍÙ ÎÅ ÓÏ×ÐÁÄÁÀÔ"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr "æÁÊÌ ÁÒÈÉ×Á ÎÅ ÎÁÊÄÅΠנÚÁÇÏÌÏ×ËÅ ÐÁËÅÔÁ"
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
@@ -2278,37 +2278,37 @@ msgstr "========= 
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -2318,7 +2318,7 @@ msgstr "%s 
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉΠÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
@@ -2398,7 +2398,7 @@ msgstr "
 msgid "(unknown type)"
 msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
@@ -2869,74 +2869,74 @@ msgstr "
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, waitpid() ×ÏÚ×ÒÁÔÉÌ %s\n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
@@ -3253,88 +3253,88 @@ msgstr "
 msgid "missing architecture name at %s:%d\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÎÁÚ×ÁÎÉÅ ÁÒÈÉÔÅËÔÕÒÙ × %s:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÄÁÎÎÙÈ × %s:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÄÁÎÎÙÈ × %s:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ arch/os: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÓËÒÙÔØ %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ %s, ÚÎÁÞÅÎÉÅ HOME ÓÌÉÛËÏÍ ×ÅÌÉËÏ.\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ %s: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' (ÎÁÊÄÅΠ0x%02x) × %s:%d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\"\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s × %s:%d %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÐÁÒÁÍÅÔÒ '%s' × %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
 
@@ -3464,73 +3464,73 @@ msgstr "
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÎÉ ÓÐÉÓËÁ ÉÈ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× (ÔÁËÏÇÏ ÎÅ "
 "ÄÏÌÖÎÏ ÂÙÔØ)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÇÒÕÐÐ, ÎÉ ÓÐÉÓËÁ ÉÈ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× (ÔÁËÏÇÏ ÎÅ ÄÏÌÖÎÏ "
 "ÂÙÔØ)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: ÎÅÐÒÁ×ÉÌØÎÁÑ ÐÏÄÐÉÓØ ÏÂÌÁÓÔÉ ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ\n"
index ce2fe6c..7728f8a 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1720,7 +1720,7 @@ msgstr "Nie je mo
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -1750,7 +1750,7 @@ msgstr "Nie je mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
@@ -2113,60 +2113,60 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "Balík neobsahuje %%description: %s"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "riadok %d: Chybné èíslo: %s"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "riadok %d: Chybné no%s èíslo: %d"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "riadok %d: Chybné %s èíslo: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Chybné magické èíslo"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Chybná/neèitateµná hlavièka"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Priveµká hlavièka"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Neznámy typ súboru"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Interná chyba"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " zlyhalo - "
 
@@ -2325,37 +2325,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -2366,7 +2366,7 @@ msgstr "varovanie: %s vytvoren
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
@@ -2446,7 +2446,7 @@ msgstr "| o
 msgid "(unknown type)"
 msgstr "(neznámy typ)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
@@ -2953,76 +2953,76 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
@@ -3343,88 +3343,88 @@ msgstr "ch
 msgid "missing architecture name at %s:%d\n"
 msgstr "chýba názov architektúry na %s:%d"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Neúplný riadok údajov na %s:%d"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Priveµa argumentov v riadku údajov na %s:%d"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Chybné èíslo arch/os: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Neúplný implicitný riadok na %s:%d"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Priveµa argumentov v implicitnom riadku na %s:%d"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Nie je mo¾né expandova» %s"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Nie je mo¾né preèíta» %s: %s."
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "chýbajúci argument pre %s na %s:%d"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "expanzia %s zlyhala na %s:%d \"%s\""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "nie je mo¾né otvori» %s na %s:%d"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "chýbajúca architektúra pre %s na %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "chybná voµba '%s' na %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznámy systém: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
 
@@ -3561,75 +3561,75 @@ msgstr "Mus
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vynechaný: %s"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 #, fuzzy
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "v balíku chýba tak meno pou¾ívateµa, ako aj zoznamy identifikácií (nemalo by "
 "sa nikdy sta»)"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 #, fuzzy
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa "
 "nikdy sta»)"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 82ea0a4..2589467 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.154 2001/09/25 16:22:08 jbj Exp $
+# $Id: sl.po,v 1.155 2001/09/25 20:51:53 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2000-10-08 19:05+0200\n"
 "Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -1704,7 +1704,7 @@ msgstr "Ikone %s ni mo
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
@@ -1734,7 +1734,7 @@ msgstr "Ikone %s ni mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -2099,60 +2099,60 @@ msgstr "Arhitektura za izgradnjo ni prisotna"
 msgid "Package has no %%description: %s\n"
 msgstr "V paketu manjka %%description: %s"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "vrstica %d: Napaèno ¹tevilo: %s"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "vrstica %d: Napaèno ¹tevilo no%s: %d"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(napaka 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Napaèno magièno ¹tevilo"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Po¹kodovana/neberljiva glava"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Glava je predolga"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Neznan tip datoteke"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "Trda povezava manjka"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Notranja napaka"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " neuspe¹no - "
 
@@ -2313,37 +2313,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -2354,7 +2354,7 @@ msgstr "opozorilo: %s ustvarjen kot %s"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
@@ -2434,7 +2434,7 @@ msgstr "na koncu izraza je pri
 msgid "(unknown type)"
 msgstr "(neznan tip)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
@@ -2942,76 +2942,76 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "pisanje na %s ni mo¾no"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
@@ -3331,88 +3331,88 @@ msgstr "manjka drugi ,:` v %s:%d"
 msgid "missing architecture name at %s:%d\n"
 msgstr "manjkajoèe ime arhitekture v %s:%d"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Nepopolna podatkovna vrstica v %s:%d"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Preveè argumentov v podatkovni vrstici v %s:%d"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Okvarjena ¹tevilka arh./op.sist.: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Nepopolna privzeta vrstica v %s:%d"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Preveè argumentov v privzeti vrstici v %s:%d"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Ni mo¾no raz¹iriti %s"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, fuzzy, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Ni mo¾no prebrati %s, HOME je prevelik."
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s ni mo¾no odpreti za branje: %s."
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Neuspe¹no branje %s: %s."
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "manjkajoèi ,:` (najden 0x%02x) v %s:%d"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "manjkajoèi argument za %s v %s:%d"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "raz¹iritev %s je bila neuspe¹na v %s:%d \"%s\""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "ni mo¾no odpreti %s v %s:%d: %s"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "manjkajoèa arhitektura za %s v %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "nepravilna izbira ,%s` v %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznan sistem: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
 
@@ -3547,73 +3547,73 @@ msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je izkljuèen: %s"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "premiokanje imenika %s v %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 #, fuzzy
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "v paketu manjka tako seznam uporabnikov kot identitet (to se ne sme zgoditi)"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 #, fuzzy
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "v paketu manjka tako seznam skupin kot identitet (to se ne sme zgoditi)"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 5181be2..9f7f547 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -1690,7 +1690,7 @@ msgstr "Ne mogu da upi
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
@@ -1720,7 +1720,7 @@ msgstr "Ne mogu da upi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2081,62 +2081,62 @@ msgstr "nemoj proveravati arhitekturu paketa"
 msgid "Package has no %%description: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, fuzzy, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "gre¹ka: "
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(nepoznat tip)"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "nedostaje ':' na %s:%d"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 #, fuzzy
 msgid "Internal error"
 msgstr "fatalna gre¹ka: "
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 #, fuzzy
 msgid " failed - "
 msgstr "PGP omanuo"
@@ -2295,37 +2295,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -2335,7 +2335,7 @@ msgstr "Ne mogu da otvorim datoteku %s: "
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2417,7 +2417,7 @@ msgstr "| o
 msgid "(unknown type)"
 msgstr "(nepoznat tip)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@@ -2929,75 +2929,75 @@ msgstr "paket %s-%s-%s sadr
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, fuzzy, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
@@ -3321,88 +3321,88 @@ msgstr "nedostaje drugo ':' na %s:%d"
 msgid "missing architecture name at %s:%d\n"
 msgstr "nedostaje ime arhitekture na %s:%d"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, fuzzy, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Nepotpuna linija podataka na %s:%d"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, fuzzy, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "Premnogo argumenata u liniji podataka na %s:%d"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, fuzzy, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Lo¹ broj arhitekture/oper.sist.: %s (%s:%d)"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, fuzzy, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Nepotpuna podrazumevana linija na %s:%d"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, fuzzy, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, fuzzy, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, fuzzy, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "nedostaje ':' na %s:%d"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, fuzzy, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "nedostaje argument za %s na %s:%d"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, fuzzy, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "nedostaje arhitektura za %s na %s:%d"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, fuzzy, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "lo¹a opcija '%s' na %s:%d"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3541,69 +3541,69 @@ msgstr "Morate podesiti \"pgp_name:\" u va
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index a8bcecf..db3b241 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-09-12 14:18+0200\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -1648,7 +1648,7 @@ msgstr "Kan inte l
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
@@ -1678,7 +1678,7 @@ msgstr "Kan inte l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kan inte skriva last till %s: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -2039,59 +2039,59 @@ msgstr "Hittade inga kompatibla arkitekturer att bygga\n"
 msgid "Package has no %%description: %s\n"
 msgstr "Paketet har ingen %%description: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "rad %d: Felaktigt tal: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "rad %d: Felaktigt no%s-tal: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "rad %d: Felaktigt %s-tal: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(fel 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Felaktigt magiskt tal"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Felaktigt/oläsbart huvud"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Huvudstorleken för stor"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Okänd filtyp"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "Saknad(e) hårdlänk(ar)"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "MD5-summan stämmer inte"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Internt fel"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr "Ingen arkivfilen i huvud"
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " misslyckades - "
 
@@ -2252,37 +2252,37 @@ msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n"
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s skapad med rättigheter %04o.\n"
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "arkivfil %s fanns inte i huvudets fillista\n"
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -2292,7 +2292,7 @@ msgstr "%s skapades som %s\n"
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
@@ -2372,7 +2372,7 @@ msgstr "| f
 msgid "(unknown type)"
 msgstr "(okänd typ)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "fel när tämporärfil %s skapades\n"
@@ -2837,75 +2837,75 @@ msgstr "paket %s systemanrop f
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "okänt fel %d uppträdde under behandling av paket %s"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan inte skapa %%%s %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan inte skriva till %%%s %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "körning av %s-skript från %s-%s-%s misslyckades, waitpid returnerade %s\n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s har %d filer, test = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n"
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "%s: kör (eventuellt) %s-skript\n"
@@ -3222,88 +3222,88 @@ msgstr "andra \":\" saknas vid %s:%d\n"
 msgid "missing architecture name at %s:%d\n"
 msgstr "arkitekturnamn saknas vid %s:%d\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "Ofullständig datarad vid %s:%d\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "För många argument i datarad vid %s:%d\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "Felaktigt arkitektur-/os-nummer: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "Ofullständig standardvärdesrad vid %s:%d\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "För många argument i standardvärdesrad vid %s:%d\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Kan inte expandera %s\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Kan inte läsa %s, HOME är för stor.\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kan inte öppna %s för läsning: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "Misslyckades med att läsa %s: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "argument till %s saknas vid %s:%d\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "%s expansion misslyckades vid %s:%d \"%s\"\n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "kan inte öppna %s vid %s:%d: %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "arkitektur saknas för %s vid %s:%d\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "okänd flagga \"%s\" vid %s:%d\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Okänt system: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Var vänlig kontakta rpm-list@redhat.com\n"
 
@@ -3432,72 +3432,72 @@ msgstr "Du m
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== omflyttningar\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d utesluter  %s\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d flyttar om %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "hoppar över multilib-sökväg %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "hoppar över %s %s\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "paketet saknar både användarnamn och id-listor (detta borde aldrig "
 "inträffa)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "paketet saknar både gruppnamn och id-listor (detta borde aldrig inträffa)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "saknas     %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Ouppfyllda beroenden för %s-%s-%s: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n"
index 5945cfa..4e5c592 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-0400\n"
 "PO-Revision-Date: 2001-07-05 08:02+300\n"
 "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
 "Language-Team: Turkish <tr@li.org>\n"
@@ -1672,7 +1672,7 @@ msgstr "%s'den ba
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
@@ -1702,7 +1702,7 @@ msgstr "%s'den payload okunamad
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
@@ -2064,59 +2064,59 @@ msgstr "Kurgulamak i
 msgid "Package has no %%description: %s\n"
 msgstr "Paket %%description içermiyor: %s\n"
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr "satýr %d: Numara hatalý: %s\n"
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr "satýr %d: Hatalý no%s numarasý: %d\n"
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "satýr %d: Hatalý %s numarasý: %s\n"
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(hata 0x%x)"
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr "Magic hatalý"
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr "Hatalý/okunamayan baþlýk"
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr "Baþlýk çok uzun"
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr "Bilinmeyen dosya türü"
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr "Sabit bað(lar) eksik"
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr "MD5 toplamý çeliþkili"
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr "Ýç hata"
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr " baþarýsýz - "
 
@@ -2277,37 +2277,37 @@ msgstr "========= Pakette bulunmayan dizinler:\n"
 msgid "%9d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n"
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -2317,7 +2317,7 @@ msgstr "%s %s olarak olu
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n"
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "%d veri türü desteklenmiyor\n"
@@ -2397,7 +2397,7 @@ msgstr "ifadenin sonunda | gerekli"
 msgid "(unknown type)"
 msgstr "(bilinmeyen tür)"
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "%s geçici dosyasý oluþturulurken hata\n"
@@ -2876,74 +2876,74 @@ msgstr "%s i
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý"
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s dosyasýna yazýlamaz %s\n"
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, waitpid sonucu %s\n"
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
@@ -3260,88 +3260,88 @@ msgstr "%s:%d - ikinci ':' eksik\n"
 msgid "missing architecture name at %s:%d\n"
 msgstr "%s:%d - mimari ismi eksik\n"
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr "%s:%d - veri satýrý tamamlanmamýþ\n"
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr "%s:%d - veri satýrýnda çok fazla argüman\n"
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr "arch/os numarasý hatalý: %s (%s:%d)\n"
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr "%s:%d - öntanýmlý satýr tamamlanmamýþ\n"
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr "%s:%d - öntanýmlý satýrda çok fazla argüman\n"
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "%s geniþletilemiyor\n"
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "%s okunamýyor, EV çok büyük\n"
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr "%s okunamadý: %s.\n"
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr "(0x%02x bulundu) %s:%d de ':' yok\n"
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr "%s için %s:%d de argüman eksik\n"
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr "%s geniþletmesi %s:%d \"%s\" de baþarýsýz \n"
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr "%s dosyasý açýlamýyor (%s:%d): %s\n"
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr "%s için %s:%d'de eksik mimari\n"
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr "seçenek '%s' (%s:%d) de hatalý\n"
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Bilinmeyen sistem: %s\n"
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Lütfen rpm-list@redhat.com listesine üye olun\n"
 
@@ -3468,72 +3468,72 @@ msgstr "Makro dosyan
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n"
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr "========== yeniden konumlama\n"
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d %s'i dýþlýyor\n"
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s dýþlanýyor\n"
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s %s'e konumlanýyor\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizini %s de yeniden konumlanýyor\n"
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 "paket hem kullanýcý ismi hem de kimlik listelerinden yoksun (bu hiç iyi "
 "deðil)\n"
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 "paket hem grup ismi hem de kimlik listelerinden yoksun (bu hiç iyi deðil)\n"
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr "eksik      %s"
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr "%s-%s-%s: deðiþmez baþlýk alaný özet denetimi baþarýsýz\n"
index ebe0f04..269be1c 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index ebe0f04..269be1c 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 12:19-0400\n"
+"POT-Creation-Date: 2001-09-25 16:48-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"
@@ -1611,7 +1611,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:571 lib/psm.c:1523
+#: build/pack.c:571 lib/psm.c:1522
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -1641,7 +1641,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:651 lib/psm.c:1782
+#: build/pack.c:651 lib/psm.c:1781
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -2001,59 +2001,59 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/spec.c:228
+#: build/spec.c:227
 #, c-format
 msgid "line %d: Bad number: %s\n"
 msgstr ""
 
-#: build/spec.c:234
+#: build/spec.c:233
 #, c-format
 msgid "line %d: Bad no%s number: %d\n"
 msgstr ""
 
-#: build/spec.c:293
+#: build/spec.c:292
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:187
+#: lib/cpio.c:186
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:190
+#: lib/cpio.c:189
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:191
+#: lib/cpio.c:190
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:212
+#: lib/cpio.c:211
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:213
+#: lib/cpio.c:212
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:214
+#: lib/cpio.c:213
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:215
+#: lib/cpio.c:214
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:216
+#: lib/cpio.c:215
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:217
+#: lib/cpio.c:216
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:226
+#: lib/cpio.c:225
 msgid " failed - "
 msgstr ""
 
@@ -2211,37 +2211,37 @@ msgstr ""
 msgid "%9d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1124
+#: lib/fsm.c:1122
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1401
+#: lib/fsm.c:1399
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1520 lib/fsm.c:1645
+#: lib/fsm.c:1518 lib/fsm.c:1643
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1671
+#: lib/fsm.c:1669
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1677
+#: lib/fsm.c:1675
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1687
+#: lib/fsm.c:1685
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1706
+#: lib/fsm.c:1704
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2251,7 +2251,7 @@ msgstr ""
 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:400
+#: lib/header.c:296 lib/header_internal.c:139 lib/psm.c:399
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
@@ -2331,7 +2331,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
+#: lib/misc.c:262 lib/misc.c:267 lib/misc.c:273
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -2789,74 +2789,74 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
 
-#: lib/psm.c:594
+#: lib/psm.c:593
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:600
+#: lib/psm.c:599
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:638
+#: lib/psm.c:637
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:745
+#: lib/psm.c:744
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1003
+#: lib/psm.c:1002
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1010
+#: lib/psm.c:1009
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1328
+#: lib/psm.c:1327
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1445
+#: lib/psm.c:1444
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:1560
+#: lib/psm.c:1559
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1569
+#: lib/psm.c:1568
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1608
+#: lib/psm.c:1607
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1609
+#: lib/psm.c:1608
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1790
+#: lib/psm.c:1789
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1793
+#: lib/psm.c:1792
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/psm.c:1885
+#: lib/psm.c:1884
 #, c-format
 msgid "%s: running %s script(s) (if any)\n"
 msgstr ""
@@ -3173,88 +3173,88 @@ msgstr ""
 msgid "missing architecture name at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:328
+#: lib/rpmrc.c:321
 #, c-format
 msgid "Incomplete data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:333
+#: lib/rpmrc.c:326
 #, c-format
 msgid "Too many args in data line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:341
+#: lib/rpmrc.c:334
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)\n"
 msgstr ""
 
-#: lib/rpmrc.c:384
+#: lib/rpmrc.c:370
 #, c-format
 msgid "Incomplete default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:389
+#: lib/rpmrc.c:375
 #, c-format
 msgid "Too many args in default line at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:591
+#: lib/rpmrc.c:577
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:596
+#: lib/rpmrc.c:582
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:613
+#: lib/rpmrc.c:599
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
 #. XXX Feof(fd)
-#: lib/rpmrc.c:660
+#: lib/rpmrc.c:646
 #, c-format
 msgid "Failed to read %s: %s.\n"
 msgstr ""
 
-#: lib/rpmrc.c:697
+#: lib/rpmrc.c:683
 #, c-format
 msgid "missing ':' (found 0x%02x) at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:714 lib/rpmrc.c:788
+#: lib/rpmrc.c:700 lib/rpmrc.c:774
 #, c-format
 msgid "missing argument for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:731 lib/rpmrc.c:753
+#: lib/rpmrc.c:717 lib/rpmrc.c:739
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\"\n"
 msgstr ""
 
-#: lib/rpmrc.c:740
+#: lib/rpmrc.c:726
 #, c-format
 msgid "cannot open %s at %s:%d: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:780
+#: lib/rpmrc.c:766
 #, c-format
 msgid "missing architecture for %s at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:847
+#: lib/rpmrc.c:833
 #, c-format
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1442
+#: lib/rpmrc.c:1428
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1443
+#: lib/rpmrc.c:1429
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
@@ -3379,69 +3379,69 @@ msgstr ""
 msgid "You must set \"%%_pgp_name\" in your macro file\n"
 msgstr ""
 
-#: lib/transaction.c:446
+#: lib/transaction.c:459
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/transaction.c:450
+#: lib/transaction.c:463
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/transaction.c:453
+#: lib/transaction.c:466
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/transaction.c:523
+#: lib/transaction.c:536
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:586
+#: lib/transaction.c:599
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/transaction.c:596
+#: lib/transaction.c:609
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:687
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:808
+#: lib/transaction.c:830
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/transaction.c:1406
+#: lib/transaction.c:1434
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:273
+#: lib/verify.c:241
 msgid "package lacks both user name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:294
+#: lib/verify.c:262
 msgid "package lacks both group name and id lists (this should never happen)\n"
 msgstr ""
 
-#: lib/verify.c:429
+#: lib/verify.c:397
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:522
+#: lib/verify.c:490
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: lib/verify.c:561
+#: lib/verify.c:529
 #, c-format
 msgid "%s-%s-%s: immutable header region digest check failed\n"
 msgstr ""
index 022ae62..e162706 100644 (file)
@@ -15,9 +15,9 @@
 #include <time.h>
 
 #include "Python.h"
+#include "rpmio_internal.h"
 #include "rpmcli.h"    /* XXX for rpmCheckSig */
 #include "misc.h"
-#include "rpmio_internal.h"
 #include "header_internal.h"
 #include "upgrade.h"
 
index 0963e58..0aefadb 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -514,3 +514,6 @@ fi
 - loosely wire beecrypt library into rpm.
 - drop rpmio/base64.[ch] in favor of beecrypt versions.
 - drop lib/md5*.[ch] files in favor of beecrypt.
+- legacy: drop brokenMD5 support (rrpm-2.3.3 to rpm-2.3.8 on sparc).
+- eliminate DYING code.
+
index a4b4d40..c0fe8f1 100644 (file)
@@ -514,3 +514,6 @@ fi
 - loosely wire beecrypt library into rpm.
 - drop rpmio/base64.[ch] in favor of beecrypt versions.
 - drop lib/md5*.[ch] files in favor of beecrypt.
+- legacy: drop brokenMD5 support (rrpm-2.3.3 to rpm-2.3.8 on sparc).
+- eliminate DYING code.
+
index 3fb929a..920c85d 100644 (file)
@@ -363,9 +363,11 @@ off_t      fdSize(FD_t fd)
 /*@-exportlocal@*/
 /**
  */
+#ifndef H_RPMIO_INTERNAL       /* XXX avoid gcc warning */
 /*@unused@*/ int fdFileno(void * cookie)
        /*@*/;
 #define        fdFileno(_fd)           fdio->_fileno(_fd)
+#endif
 
 /**
  */
index a10695e..3148649 100644 (file)
@@ -7,8 +7,6 @@
 
 
 #include <rpmio.h>
-#undef fdFileno
-
 #include <rpmurl.h>
 
 /** \ingroup rpmio