- add some dinky availablePackage methods.
authorjbj <devnull@localhost>
Mon, 29 Oct 2001 23:39:51 +0000 (23:39 +0000)
committerjbj <devnull@localhost>
Mon, 29 Oct 2001 23:39:51 +0000 (23:39 +0000)
CVS patchset: 5141
CVS date: 2001/10/29 23:39:51

42 files changed:
CHANGES
lib/depends.c
lib/fsm.c
lib/problems.c
lib/psm.c
lib/rpmal.c
lib/rpmal.h
lib/rpmlib.h
lib/transaction.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
rpm.spec
rpm.spec.in

diff --git a/CHANGES b/CHANGES
index eabbffb..9e2f49b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -32,6 +32,7 @@
        - no-brainer refcounts for fi object, debug the mess.
        - dump the header early in transaction, recreate fi before installing.
        - start hiding availablePackage data/methods in rpmal.c/rpmal.h.
+       - add some dinky availablePackage methods.
 
 4.0.3 -> 4.0.4:
 
index 50b97c8..9cbb651 100644 (file)
 /*@access rpmTransactionSet@*/
 /*@access rpmDependencyConflict@*/
 
-/*@access availablePackage@*/
-/*@access availableIndexEntry@*/
-/*@access availableIndex@*/
-/*@access fileIndexEntry@*/
-/*@access dirInfo@*/
-/*@access availableList@*/
 /*@access problemsSet@*/
 /*@access orderListIndex@*/
 /*@access tsortInfo@*/
 
+/*@access availablePackage@*/
+
 /*@unchecked@*/
 static int _cacheDependsRC = 1;
 
@@ -544,9 +540,11 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, FD_t fd,
      * Check for previously added versions with the same name.
      */
     i = ts->orderCount;
-    if (ts->addedPackages->list != NULL)
     for (i = 0; i < ts->orderCount; i++) {
-       p = ts->addedPackages->list + i;
+
+       if ((p = alGetPkg(ts->addedPackages, i)) == NULL)
+           break;
+
        if (strcmp(p->name, name))
            continue;
        rc = rpmVersionCompare(p->h, h);
@@ -576,15 +574,17 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, FD_t fd,
        ts->order = xrealloc(ts->order, ts->orderAlloced * sizeof(*ts->order));
     }
     ts->order[i].type = TR_ADDED;
-    if (ts->addedPackages->list == NULL)
-       goto exit;
 
     {  availablePackage this =
                alAddPackage(ts->addedPackages, i, h, key, fd, relocs);
-       alNum = this - ts->addedPackages->list;
+       alNum = alGetPkgIndex(ts->addedPackages, this);
        ts->order[i].u.addedIndex = alNum;
     }
 
+    /* XXX sanity check */
+    if (alGetPkg(ts->addedPackages, alNum) == NULL)
+       goto exit;
+
     if (i == ts->orderCount)
        ts->orderCount++;
 
@@ -617,8 +617,11 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, FD_t fd,
                if (hge(h, RPMTAG_MULTILIBS, NULL, (void **) &pp, NULL))
                    multiLibMask = *pp;
                if (oldmultiLibMask && multiLibMask
-                   && !(oldmultiLibMask & multiLibMask)) {
-                   ts->addedPackages->list[alNum].multiLib = multiLibMask;
+                && !(oldmultiLibMask & multiLibMask))
+               {
+                   availablePackage alp = alGetPkg(ts->addedPackages, alNum);
+                   if (alp != NULL)
+                       alp->multiLib = multiLibMask;
                }
            }
            /*@=branchstate@*/
@@ -1428,7 +1431,7 @@ static inline int addRelation( const rpmTransactionSet ts,
 
     /* Avoid redundant relations. */
     /* XXX TODO: add control bit. */
-    matchNum = q - ts->addedPackages->list;
+    matchNum = alGetPkgIndex(ts->addedPackages, q);
     if (selected[matchNum] != 0)
        return 0;
     selected[matchNum] = 1;
@@ -1501,7 +1504,7 @@ static void addQ(availablePackage p,
 
 int rpmdepOrder(rpmTransactionSet ts)
 {
-    int npkgs = ts->addedPackages->size;
+    int npkgs = alGetSize(ts->addedPackages);
     int chainsaw = ts->transFlags & RPMTRANS_FLAG_CHAINSAW;
     availablePackage p;
     availablePackage q;
@@ -1528,17 +1531,19 @@ int rpmdepOrder(rpmTransactionSet ts)
 
     /* Record all relations. */
     rpmMessage(RPMMESS_DEBUG, _("========== recording tsort relations\n"));
-    if ((p = ts->addedPackages->list) != NULL)
-    for (i = 0; i < npkgs; i++, p++) {
+    for (i = 0; i < npkgs; i++) {
        int matchNum;
 
+       if ((p = alGetPkg(ts->addedPackages, i)) == NULL)
+           break;
+
        if (p->requiresCount <= 0)
            continue;
 
        memset(selected, 0, sizeof(*selected) * npkgs);
 
        /* Avoid narcisstic relations. */
-       matchNum = p - ts->addedPackages->list;
+       matchNum = alGetPkgIndex(ts->addedPackages, p);
        selected[matchNum] = 1;
 
        /* T2. Next "q <- p" relation. */
@@ -1581,8 +1586,11 @@ int rpmdepOrder(rpmTransactionSet ts)
     }
 
     /* Save predecessor count. */
-    if ((p = ts->addedPackages->list) != NULL)
-    for (i = 0; i < npkgs; i++, p++) {
+    for (i = 0; i < npkgs; i++) {
+
+       if ((p = alGetPkg(ts->addedPackages, i)) == NULL)
+           break;
+
        p->npreds = p->tsi.tsi_count;
     }
 
@@ -1592,8 +1600,10 @@ int rpmdepOrder(rpmTransactionSet ts)
 rescan:
     q = r = NULL;
     qlen = 0;
-    if ((p = ts->addedPackages->list) != NULL)
-    for (i = 0; i < npkgs; i++, p++) {
+    for (i = 0; i < npkgs; i++) {
+
+       if ((p = alGetPkg(ts->addedPackages, i)) == NULL)
+           break;
 
        /* Prefer packages in presentation order. */
        if (!chainsaw)
@@ -1613,7 +1623,7 @@ rescan:
                        orderingCount, q->npreds, q->tsi.tsi_qcnt, q->depth,
                        2*q->depth, "",
                        q->name, q->version, q->release);
-       ordering[orderingCount++] = q - ts->addedPackages->list;
+       ordering[orderingCount++] = alGetPkgIndex(ts->addedPackages, q);
        qlen--;
        loopcheck--;
 
@@ -1647,8 +1657,11 @@ rescan:
 
        /* T9. Initialize predecessor chain. */
        nzaps = 0;
-       if ((q = ts->addedPackages->list) != NULL)
-       for (i = 0; i < npkgs; i++, q++) {
+       for (i = 0; i < npkgs; i++) {
+
+           if ((q = alGetPkg(ts->addedPackages, i)) == NULL)
+               break;
+
            q->tsi.tsi_pkg = NULL;
            q->tsi.tsi_reqx = 0;
            /* Mark packages already sorted. */
@@ -1657,8 +1670,11 @@ rescan:
        }
 
        /* T10. Mark all packages with their predecessors. */
-       if ((q = ts->addedPackages->list) != NULL)
-       for (i = 0; i < npkgs; i++, q++) {
+       for (i = 0; i < npkgs; i++) {
+
+           if ((q = alGetPkg(ts->addedPackages, i)) == NULL)
+               break;
+
            if ((tsi = q->tsi.tsi_next) == NULL)
                continue;
            q->tsi.tsi_next = NULL;
@@ -1667,11 +1683,13 @@ rescan:
        }
 
        /* T11. Print all dependency loops. */
-       if ((r = ts->addedPackages->list) != NULL)
        /*@-branchstate@*/
-       for (i = 0; i < npkgs; i++, r++) {
+       for (i = 0; i < npkgs; i++) {
            int printed;
 
+           if ((r = alGetPkg(ts->addedPackages, i)) == NULL)
+               break;
+
            printed = 0;
 
            /* T12. Mark predecessor chain, looking for start of loop. */
@@ -1839,7 +1857,7 @@ int rpmdepCheck(rpmTransactionSet ts,
        closeatexit = 1;
     }
 
-    npkgs = ts->addedPackages->size;
+    npkgs = alGetSize(ts->addedPackages);
 
     ps = xcalloc(1, sizeof(*ps));
     ps->alloced = 5;
@@ -1856,9 +1874,10 @@ int rpmdepCheck(rpmTransactionSet ts,
      * Look at all of the added packages and make sure their dependencies
      * are satisfied.
      */
-    if ((p = ts->addedPackages->list) != NULL)
-    for (i = 0; i < npkgs; i++, p++)
+    for (i = 0; i < npkgs; i++)
     {
+       if ((p = alGetPkg(ts->addedPackages, i)) == NULL)
+           break;
 
         rpmMessage(RPMMESS_DEBUG,  "========== +++ %s-%s-%s\n" ,
                p->name, p->version, p->release);
index 2d96400..2553f69 100644 (file)
--- a/lib/fsm.c
+++ b/lib/fsm.c
@@ -15,8 +15,6 @@
 /*@access FSMI_t @*/
 /*@access FSM_t @*/
 
-/*@access availablePackage@*/  /* XXX fi->ap->key on callbacks */
-
 #define        alloca_strdup(_s)       strcpy(alloca(strlen(_s)+1), (_s))
 
 /*@unchecked@*/
@@ -495,7 +493,7 @@ int fsmSetup(FSM_t fsm, fileStage goal,
            /*@-type@*/ /* FIX: cast? */
            /*@-noeffectuncon @*/ /* FIX: check rc */
            (void)ts->notify(fi->h, RPMCALLBACK_INST_START, 0, fi->archiveSize,
-                       rpmfiGetKey(fi->ap), ts->notifyData);
+                       rpmfiGetKey(fi), ts->notifyData);
            /*@=noeffectuncon @*/
            /*@=type@*/
        }
@@ -867,7 +865,7 @@ static int writeFile(/*@special@*/ FSM_t fsm, int writeData)
            /*@-type@*/ /* FIX: cast? */
            /*@-noeffectuncon @*/ /* FIX: check rc */
            (void)ts->notify(fi->h, RPMCALLBACK_INST_PROGRESS, size, size,
-                       rpmfiGetKey(fi->ap), ts->notifyData);
+                       rpmfiGetKey(fi), ts->notifyData);
            /*@=noeffectuncon @*/
            /*@=type@*/
        }
@@ -1650,7 +1648,7 @@ if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break;
                /*@-noeffectuncon @*/ /* FIX: check rc */
                (void)ts->notify(fi->h, RPMCALLBACK_INST_PROGRESS,
                        fdGetCpioPos(fsm->cfd), fi->archiveSize,
-                       rpmfiGetKey(fi->ap), ts->notifyData);
+                       rpmfiGetKey(fi), ts->notifyData);
                /*@=noeffectuncon @*/
                /*@=type@*/
            }
index 8ca7698..3faf56a 100644 (file)
 #include "debug.h"
 
 /*@access Header@*/
-/*@access rpmProblemSet@*/
 /*@access rpmProblem@*/
+/*@access rpmProblemSet@*/
 /*@access rpmDependencyConflict@*/
+/*@access rpmTransactionSet@*/ /* XXX ts->addedPackages */
+
+#if 0
 /*@access availablePackage@*/
+#endif
 
 rpmProblemSet rpmProblemSetCreate(void)
 {
@@ -34,7 +38,9 @@ void rpmProblemSetFree(rpmProblemSet tsprobs)
 
     for (i = 0; i < tsprobs->numProblems; i++) {
        rpmProblem p = tsprobs->probs + i;
+#ifdef DYING
        p->h = headerFree(p->h);
+#endif
        p->pkgNEVR = _free(p->pkgNEVR);
        p->altNEVR = _free(p->altNEVR);
        p->str1 = _free(p->str1);
@@ -42,7 +48,8 @@ void rpmProblemSetFree(rpmProblemSet tsprobs)
     tsprobs = _free(tsprobs);
 }
 
-void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
+void rpmProblemSetAppend(const rpmTransactionSet ts,
+               rpmProblemSet tsprobs, rpmProblemType type,
                const availablePackage alp,
                const char * dn, const char * bn,
                Header altH, unsigned long ulong1)
@@ -63,13 +70,21 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
     tsprobs->numProblems++;
     memset(p, 0, sizeof(*p));
     p->type = type;
+
+#ifdef DYING
     /*@-assignexpose@*/
     p->key = alp->key;
     /*@=assignexpose@*/
+#else
+    p->key = alGetKey(ts->addedPackages, alGetPkgIndex(ts->addedPackages, alp));
+#endif
+
     p->ulong1 = ulong1;
     p->ignoreProblem = 0;
     p->str1 = NULL;
+#ifdef DYING
     p->h = NULL;
+#endif
     p->pkgNEVR = NULL;
     p->altNEVR = NULL;
 
@@ -82,7 +97,10 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
     }
 
     if (alp != NULL) {
+#ifdef DYING
        p->h = headerLink(alp->h);
+#endif
+#ifdef DYING
        t = xcalloc(1,  strlen(alp->name) +
                        strlen(alp->version) +
                        strlen(alp->release) + sizeof("--"));
@@ -92,6 +110,9 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
        t = stpcpy(t, alp->version);
        t = stpcpy(t, "-");
        t = stpcpy(t, alp->release);
+#else
+       p->pkgNEVR = alGetPkgNVR(ts->addedPackages, alp);
+#endif
     }
 
     if (altH != NULL) {
@@ -132,8 +153,13 @@ int rpmProblemSetTrim(rpmProblemSet tsprobs, rpmProblemSet filter)
        }
        while ((t - tsprobs->probs) < tsprobs->numProblems) {
            /*@-nullpass@*/     /* LCL: looks good to me */
+#ifdef DYING
            if (f->h == t->h && f->type == t->type && t->key == f->key &&
                     XSTRCMP(f->str1, t->str1))
+#else
+           if (f->type == t->type && t->key == f->key &&
+                    XSTRCMP(f->str1, t->str1))
+#endif
                /*@innerbreak@*/ break;
            /*@=nullpass@*/
            t++;
index 51f7a39..fc8de24 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -208,7 +208,7 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
                    /*@innerbreak@*/ break;
            /* XXX actions check prevents problem from being appended twice. */
            if (j == numValid && !allowBadRelocate && actions)
-               rpmProblemSetAppend(ts->probs, RPMPROB_BADRELOCATE, alp,
+               rpmProblemSetAppend(ts, ts->probs, RPMPROB_BADRELOCATE, alp,
                         relocations[i].oldPath, NULL, NULL, 0);
            del =
                strlen(relocations[i].newPath) - strlen(relocations[i].oldPath);
@@ -1176,13 +1176,14 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts,
     }
 
     (void) rpmtransAddPackage(ts, h, fd, NULL, 0, NULL);
-    if (ts->addedPackages->list == NULL) {     /* XXX can't happen */
+
+    /* XXX can't happen */
+    if ((fi->ap = alGetPkg(ts->addedPackages, 0)) == NULL) {
        rc = RPMRC_FAIL;
        goto exit;
     }
 
     fi->type = TR_ADDED;
-    fi->ap = ts->addedPackages->list;
     loadFi(ts, fi, h, 1);
     hge = fi->hge;
     hfd = (fi->hfd ? fi->hfd : headerFreeData);
index 8b727c7..3afabf9 100644 (file)
 
 /*@access Header@*/            /* XXX compared with NULL */
 /*@access FD_t@*/              /* XXX compared with NULL */
-/*@access rpmDependencyConflict@*/
 
 /*@access availablePackage@*/
+
+typedef /*@abstract@*/ struct fileIndexEntry_s *       fileIndexEntry;
+typedef /*@abstract@*/ struct dirInfo_s *              dirInfo;
+typedef /*@abstract@*/ struct availableIndexEntry_s *  availableIndexEntry;
+typedef /*@abstract@*/ struct availableIndex_s *       availableIndex;
+
 /*@access availableIndexEntry@*/
 /*@access availableIndex@*/
 /*@access fileIndexEntry@*/
 /*@access dirInfo@*/
 /*@access availableList@*/
 
+/** \ingroup rpmdep
+ * A single available item (e.g. a Provides: dependency).
+ */
+struct availableIndexEntry_s {
+/*@dependent@*/ availablePackage package; /*!< Containing package. */
+/*@dependent@*/ const char * entry;    /*!< Available item name. */
+    size_t entryLen;                   /*!< No. of bytes in name. */
+    enum indexEntryType {
+       IET_PROVIDES=1          /*!< A Provides: dependency. */
+    } type;                            /*!< Type of available item. */
+};
+
+/** \ingroup rpmdep
+ * Index of all available items.
+ */
+struct availableIndex_s {
+/*@null@*/ availableIndexEntry index;  /*!< Array of available items. */
+    int size;                          /*!< No. of available items. */
+};
+
+/** \ingroup rpmdep
+ * A file to be installed/removed.
+ */
+struct fileIndexEntry_s {
+    int pkgNum;                                /*!< Containing package number. */
+    int fileFlags;     /* MULTILIB */
+/*@dependent@*/ /*@null@*/ const char * baseName;      /*!< File basename. */
+};
+
+/** \ingroup rpmdep
+ * A directory to be installed/removed.
+ */
+struct dirInfo_s {
+/*@owned@*/ const char * dirName;      /*!< Directory path (+ trailing '/'). */
+    int dirNameLen;                    /*!< No. bytes in directory path. */
+/*@owned@*/ fileIndexEntry files;      /*!< Array of files in directory. */
+    int numFiles;                      /*!< No. files in directory. */
+};
+
+/** \ingroup rpmdep
+ * Set of available packages, items, and directories.
+ */
+struct availableList_s {
+/*@owned@*/ /*@null@*/ availablePackage list;  /*!< Set of packages. */
+    struct availableIndex_s index;     /*!< Set of available items. */
+    int delta;                         /*!< Delta for pkg list reallocation. */
+    int size;                          /*!< No. of pkgs in list. */
+    int alloced;                       /*!< No. of pkgs allocated for list. */
+    int numDirs;                       /*!< No. of directories. */
+/*@owned@*/ /*@null@*/ dirInfo dirs;   /*!< Set of directories. */
+};
+
 /*@unchecked@*/
 static int _al_debug = 0;
 
@@ -38,6 +95,74 @@ static void alFreeIndex(availableList al)
     }
 }
 
+int alGetSize(availableList al)
+{
+    return al->size;
+}
+
+const void * alGetKey(availableList al, int pkgNum)
+{
+    const void * key = NULL;
+    if (al != NULL && pkgNum >= 0 && pkgNum < al->size) {
+       if (al->list != NULL) {
+           availablePackage alp = al->list + pkgNum;
+           key = alp->key;
+       }
+    }
+    return key;
+}
+
+availablePackage alGetPkg(availableList al, int pkgNum)
+{
+    availablePackage alp = NULL;
+    if (al != NULL && pkgNum >= 0 && pkgNum < al->size) {
+       if (al->list != NULL)
+           alp = al->list + pkgNum;
+    }
+/*@-modfilesys@*/
+if (_al_debug)
+fprintf(stderr, "*** alp[%d] %p\n", pkgNum, alp);
+/*@=modfilesys@*/
+    return alp;
+}
+
+int alGetPkgIndex(availableList al, availablePackage alp)
+{
+    int pkgNum = -1;
+    if (al != NULL) {
+       if (al->list != NULL)
+           if (alp != NULL && alp >= al->list && alp < (al->list + al->size))
+               pkgNum = alp - al->list;
+    }
+/*@-modfilesys@*/
+if (_al_debug)
+fprintf(stderr, "*** alp %p[%d]\n", alp, pkgNum);
+/*@=modfilesys@*/
+    return pkgNum;
+}
+
+const char * alGetPkgNVR(availableList al, availablePackage alp)
+{
+    const char * pkgNVR = NULL;
+
+    if (al != NULL) {
+       if (al->list != NULL)
+           if (alp != NULL && alp >= al->list && alp < (al->list + al->size)) {
+               char * t;
+               t = xcalloc(1,  strlen(alp->name) +
+                               strlen(alp->version) +
+                               strlen(alp->release) + sizeof("--"));
+               pkgNVR = t;
+               t = stpcpy(t, alp->name);
+               t = stpcpy(t, "-");
+               t = stpcpy(t, alp->version);
+               t = stpcpy(t, "-");
+               t = stpcpy(t, alp->release);
+           }
+    }
+    return pkgNVR;
+}
+
 availableList alCreate(int delta)
 {
     availableList al = xcalloc(1, sizeof(*al));
index 3e4bb2a..b84c0e7 100644 (file)
@@ -6,10 +6,12 @@
  * Structures used for managing added/available package lists.
  */
 
+#if 0
 typedef /*@abstract@*/ struct fileIndexEntry_s *       fileIndexEntry;
 typedef /*@abstract@*/ struct dirInfo_s *              dirInfo;
 typedef /*@abstract@*/ struct availableIndexEntry_s *  availableIndexEntry;
 typedef /*@abstract@*/ struct availableIndex_s *       availableIndex;
+#endif
 
 typedef /*@abstract@*/ struct tsortInfo_s *            tsortInfo;
 
@@ -30,7 +32,7 @@ struct tsortInfo_s {
     availablePackage tsi_pkg;
     int                tsi_reqx;
     int                tsi_qcnt;
-} ;
+};
 /*@=fielduse@*/
 
 /** \ingroup rpmdep
@@ -59,63 +61,58 @@ struct availablePackage_s {
 /*@kept@*//*@null@*/ const void * key; /*!< Private data associated with a package (e.g. file name of package). */
 /*@null@*/ rpmRelocation * relocs;
 /*@null@*/ FD_t fd;
-} ;
+};
 
-/** \ingroup rpmdep
- * A single available item (e.g. a Provides: dependency).
- */
-struct availableIndexEntry_s {
-/*@dependent@*/ availablePackage package; /*!< Containing package. */
-/*@dependent@*/ const char * entry;    /*!< Available item name. */
-    size_t entryLen;                   /*!< No. of bytes in name. */
-    enum indexEntryType {
-       IET_PROVIDES=1          /*!< A Provides: dependency. */
-    } type;                            /*!< Type of available item. */
-} ;
+#ifdef __cplusplus
+extern "C" {
+#endif
 
-/** \ingroup rpmdep
- * Index of all available items.
+/**
+ * Return number of packages in list.
+ * @param al           available list
+ * @return             no. of packages in list
  */
-struct availableIndex_s {
-/*@null@*/ availableIndexEntry index;  /*!< Array of available items. */
-    int size;                          /*!< No. of available items. */
-} ;
+int alGetSize(availableList al)
+       /*@*/;
 
-/** \ingroup rpmdep
- * A file to be installed/removed.
+/**
+ * Return available package key.
+ * @param al           available list
+ * @param pkgNum       available package index
+ * @return             available package key
  */
-struct fileIndexEntry_s {
-    int pkgNum;                                /*!< Containing package number. */
-    int fileFlags;     /* MULTILIB */
-/*@dependent@*/ /*@null@*/ const char * baseName;      /*!< File basename. */
-} ;
+/*@kept@*/ /*@null@*/
+const void * alGetKey(/*@null@*/ availableList al, int pkgNum)
+       /*@*/;
 
-/** \ingroup rpmdep
- * A directory to be installed/removed.
+/**
+ * Return available package.
+ * @param al           available list
+ * @param pkgNum       available package index
+ * @return             available package pointer
  */
-struct dirInfo_s {
-/*@owned@*/ const char * dirName;      /*!< Directory path (+ trailing '/'). */
-    int dirNameLen;                    /*!< No. bytes in directory path. */
-/*@owned@*/ fileIndexEntry files;      /*!< Array of files in directory. */
-    int numFiles;                      /*!< No. files in directory. */
-} ;
+/*@dependent@*/ /*@null@*/
+availablePackage alGetPkg(/*@null@*/ availableList al, int pkgNum)
+       /*@*/;
 
-/** \ingroup rpmdep
- * Set of available packages, items, and directories.
+/**
+ * Return available package index.
+ * @param al           available list
+ * @param alp          available package pointer
+ * @return             available package index, -1 on failure
  */
-struct availableList_s {
-/*@owned@*/ /*@null@*/ availablePackage list;  /*!< Set of packages. */
-    struct availableIndex_s index;     /*!< Set of available items. */
-    int delta;                         /*!< Delta for pkg list reallocation. */
-    int size;                          /*!< No. of pkgs in list. */
-    int alloced;                       /*!< No. of pkgs allocated for list. */
-    int numDirs;                       /*!< No. of directories. */
-/*@owned@*/ /*@null@*/ dirInfo dirs;   /*!< Set of directories. */
-} ;
+int alGetPkgIndex(/*@null@*/ availableList al, availablePackage alp)
+       /*@*/;
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+/**
+ * Return (malloc'd) available package name-version-release string.
+ * @param al           available list
+ * @param alp          available package pointer
+ * @return             
+ */
+/*@only@*/ /*@null@*/
+const char * alGetPkgNVR(/*@null@*/ availableList al, availablePackage alp)
+       /*@*/;
 
 /**
  * Initialize available packckages, items, and directory list.
index 910d7d2..4041a66 100644 (file)
@@ -50,6 +50,20 @@ _free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p)
     return NULL;
 }
 
+/** \ingroup rpmtrans
+ * The RPM Transaction Set.
+ * Transaction sets are inherently unordered! RPM may reorder transaction
+ * sets to reduce errors. In general, installs/upgrades are done before
+ * strict removals, and prerequisite ordering is done on installs/upgrades.
+ */
+typedef /*@abstract@*/ /*@refcounted@*/
+struct rpmTransactionSet_s * rpmTransactionSet;
+
+/** \ingroup rpmtrans
+ * A package in a transaction set.
+ */
+typedef /*@abstract@*/ struct availablePackage_s * availablePackage;
+
 /** \ingroup header
  * Return name, version, release strings from header.
  * @param h            header
@@ -902,11 +916,6 @@ int rpmdbRebuild(/*@null@*/ const char * prefix)
 /*@{*/
 
 /**
- * A package in a transaction set.
- */
-typedef /*@abstract@*/ struct availablePackage_s * availablePackage;
-
-/**
  * Raw data for an element of a problem set.
  */
 typedef /*@abstract@*/ struct rpmProblem_s * rpmProblem;
@@ -945,7 +954,9 @@ struct rpmProblem_s {
 /*@only@*/ /*@null@*/ const char * pkgNEVR;
 /*@only@*/ /*@null@*/ const char * altNEVR;
 /*@kept@*/ /*@null@*/ const void * key;
+#ifdef DYING
 /*@null@*/ Header h;
+#endif
     rpmProblemType type;
     int ignoreProblem;
 /*@only@*/ /*@null@*/ const char * str1;
@@ -1044,7 +1055,8 @@ void rpmProblemSetPrint(FILE *fp, rpmProblemSet tsprobs)
 /**
  * Append problem to set.
  */
-void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
+void rpmProblemSetAppend(const rpmTransactionSet ts,
+               rpmProblemSet tsprobs, rpmProblemType type,
                const availablePackage alp,
                const char * dn, const char * bn,
                Header altH, unsigned long ulong1)
@@ -1221,14 +1233,6 @@ typedef /*@abstract@*/ struct psm_s * PSM_t;
  */
 typedef /*@abstract@*/ /*@refcounted@*/ struct transactionFileInfo_s * TFI_t;
 
-/** \ingroup rpmtrans
- * The RPM Transaction Set.
- * Transaction sets are inherently unordered! RPM may reorder transaction
- * sets to reduce errors. In general, installs/upgrades are done before
- * strict removals, and prerequisite ordering is done on installs/upgrades.
- */
-typedef /*@abstract@*/ /*@refcounted@*/ struct rpmTransactionSet_s * rpmTransactionSet;
-
 /**
  * Return package header from file handle.
  * @param ts           transaction set
index 647ad5b..e0d193c 100644 (file)
@@ -57,7 +57,6 @@ extern int statvfs (const char * file, /*@out@*/ struct statvfs * buf)
 /*@access PSM_t@*/
 
 /*@access availablePackage@*/
-/*@access availableList@*/
 /*@access transactionElement@*/
 
 /**
@@ -119,13 +118,8 @@ int rpmtransGetKeys(const rpmTransactionSet ts, const void *** ep, int * nep)
        for (oc = 0; oc < ts->orderCount; oc++, e++) {
            switch (ts->order[oc].type) {
            case TR_ADDED:
-               if (ts->addedPackages->list) {
-                   availablePackage alp;
-                   alp = ts->addedPackages->list + ts->order[oc].u.addedIndex;
-                   *e = alp->key;
-                   /*@switchbreak@*/ break;
-               }
-               /*@fallthrough@*/
+               *e = alGetKey(ts->addedPackages, ts->order[oc].u.addedIndex);
+               /*@switchbreak@*/ break;
            default:
            case TR_REMOVED:
                /*@-mods@*/     /* FIX: double indirection. */
@@ -391,7 +385,7 @@ static int handleInstInstalledFiles(const rpmTransactionSet ts, TFI_t fi,
                        fi->fmd5s[fileNum],
                        fi->flinks[fileNum])) {
            if (reportConflicts)
-               rpmProblemSetAppend(ts->probs, RPMPROB_FILE_CONFLICT, fi->ap,
+               rpmProblemSetAppend(ts, ts->probs, RPMPROB_FILE_CONFLICT, fi->ap,
                        fi->dnl[fi->dil[fileNum]], fi->bnl[fileNum], h, 0);
            if (!(otherFlags[otherFileNum] | fi->fflags[fileNum])
                        & RPMFILE_CONFIG) {
@@ -596,8 +590,10 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
                        fi->fmodes[i],
                        fi->fmd5s[i],
                        fi->flinks[i])) {
-               rpmProblemSetAppend(ts->probs, RPMPROB_NEW_FILE_CONFLICT, fi->ap,
+               /*@-nullstate@*/ /* FIX: ts->di is possibly NULL */
+               rpmProblemSetAppend(ts, ts->probs, RPMPROB_NEW_FILE_CONFLICT, fi->ap,
                                filespec, NULL, recs[otherPkgNum]->ap->h, 0);
+               /*@=nullstate@*/
            }
 
            /* Try to get the disk accounting correct even if a conflict. */
@@ -692,7 +688,7 @@ static int ensureOlder(rpmTransactionSet ts, availablePackage alp, Header old)
        rc = 0;
     else if (result > 0) {
        rc = 1;
-       rpmProblemSetAppend(ts->probs, RPMPROB_OLDPACKAGE, alp,
+       rpmProblemSetAppend(ts, ts->probs, RPMPROB_OLDPACKAGE, alp,
                        NULL, NULL, old, 0);
     }
 
@@ -916,11 +912,13 @@ static /*@dependent@*/ availablePackage tsGetAlp(void * a)
     if (oc != -1) {
        rpmTransactionSet ts = iter->ts;
        TFI_t fi = ts->flList + oc;
-       if (ts->addedPackages->list && fi->type == TR_ADDED)
-           alp = ts->addedPackages->list + ts->order[oc].u.addedIndex;
+       if (fi->type == TR_ADDED)
+           alp = alGetPkg(ts->addedPackages, ts->order[oc].u.addedIndex);
     }
     /*@=branchstate@*/
+    /*@-nullret@*/ /* FIX: alp can be NULL */
     return alp;
+    /*@=nullret@*/
 }
 
 /**
@@ -1096,17 +1094,18 @@ int keep_header = 1;    /* XXX rpmProblemSetAppend prevents dumping headers. */
      * - count files.
      */
     /* The ordering doesn't matter here */
-    if (ts->addedPackages->list != NULL)
-    for (alp = ts->addedPackages->list;
-       (alp - ts->addedPackages->list) < ts->addedPackages->size;
-       alp++)
+    for (i = 0; i < alGetSize(ts->addedPackages); i++)
     {
+       alp = alGetPkg(ts->addedPackages, i);
+       if (alp == NULL)
+           break;
+
        if (!archOkay(alp->h) && !(ts->ignoreSet & RPMPROB_FILTER_IGNOREARCH))
-           rpmProblemSetAppend(ts->probs, RPMPROB_BADARCH, alp,
+           rpmProblemSetAppend(ts, ts->probs, RPMPROB_BADARCH, alp,
                        NULL, NULL, NULL, 0);
 
        if (!osOkay(alp->h) && !(ts->ignoreSet & RPMPROB_FILTER_IGNOREOS))
-           rpmProblemSetAppend(ts->probs, RPMPROB_BADOS, alp,
+           rpmProblemSetAppend(ts, ts->probs, RPMPROB_BADOS, alp,
                        NULL, NULL, NULL, 0);
 
        if (!(ts->ignoreSet & RPMPROB_FILTER_OLDPACKAGE)) {
@@ -1128,7 +1127,7 @@ int keep_header = 1;      /* XXX rpmProblemSetAppend prevents dumping headers. */
                        RPMMIRE_DEFAULT, alp->release);
 
            while (rpmdbNextIterator(mi) != NULL) {
-               rpmProblemSetAppend(ts->probs, RPMPROB_PKG_INSTALLED, alp,
+               rpmProblemSetAppend(ts, ts->probs, RPMPROB_PKG_INSTALLED, alp,
                        NULL, NULL, NULL, 0);
                /*@innerbreak@*/ break;
            }
@@ -1158,7 +1157,7 @@ int keep_header = 1;      /* XXX rpmProblemSetAppend prevents dumping headers. */
     /* ===============================================
      * Initialize file list:
      */
-    ts->flEntries = ts->addedPackages->size + ts->numRemovedPackages;
+    ts->flEntries = alGetSize(ts->addedPackages) + ts->numRemovedPackages;
     ts->flList = xcalloc(ts->flEntries, sizeof(*ts->flList));
 
     /*
@@ -1368,12 +1367,12 @@ int keep_header = 1;    /* XXX rpmProblemSetAppend prevents dumping headers. */
                    /*@innercontinue@*/ continue;
 
                if (adj_fs_blocks(dip->bneeded) > dip->bavail)
-                   rpmProblemSetAppend(ts->probs, RPMPROB_DISKSPACE, fi->ap,
+                   rpmProblemSetAppend(ts, ts->probs, RPMPROB_DISKSPACE, fi->ap,
                                ts->filesystems[i], NULL, NULL,
                   (adj_fs_blocks(dip->bneeded) - dip->bavail) * dip->bsize);
 
                if (adj_fs_blocks(dip->ineeded) > dip->iavail)
-                   rpmProblemSetAppend(ts->probs, RPMPROB_DISKNODES, fi->ap,
+                   rpmProblemSetAppend(ts, ts->probs, RPMPROB_DISKNODES, fi->ap,
                                ts->filesystems[i], NULL, NULL,
                    (adj_fs_blocks(dip->ineeded) - dip->iavail));
            }
@@ -1474,7 +1473,7 @@ int keep_header = 1;      /* XXX rpmProblemSetAppend prevents dumping headers. */
        case TR_ADDED:
            alp = tsGetAlp(tsi);
 assert(alp == fi->ap);
-           i = alp - ts->addedPackages->list;
+           i = alGetPkgIndex(ts->addedPackages, alp);
 
            rpmMessage(RPMMESS_DEBUG, "========== +++ %s-%s-%s\n",
                        fi->name, fi->version, fi->release);
index a4cde27..933b0e3 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -831,7 +831,7 @@ msgstr "Nemohu p
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
@@ -861,7 +861,7 @@ msgstr "Nemohu p
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
@@ -1433,7 +1433,7 @@ msgid " failed - "
 msgstr "selhal - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1442,75 +1442,75 @@ msgstr ""
 "Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr "ANO"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr "NE "
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít databázi balíèkù v %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-s (ke¹ováno)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s ANO (db soubory)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s ANO (db balíèek)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NE\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
@@ -1518,43 +1518,43 @@ msgstr "%s: (%s, %s) p
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "balíèek %s koliduje: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "========== ukládání tsort relací\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "SMYÈKA:\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== pokraèuje tsort ...\n"
 
@@ -1606,47 +1606,47 @@ msgstr "nemohu otev
 msgid "file %s is on an unknown device\n"
 msgstr "soubor %s je na neznámém zaøízení\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "vytvoøen adresáø %s s právy %04o.\n"
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -2179,67 +2179,67 @@ msgstr "podepsat bal
 msgid "generate signature"
 msgstr "generovat PGP/GPG podpis"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " je nutné pro %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "balíèek %s je pro jinou architekturu"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "balíèek %s je pro jiný operaèní systém"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "balíèek %s je ji¾ nainstalován"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "soubor %s zpùsobuje konflikt mezi instalovaným %s a %s"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "soubor %s z instalace %s koliduje se souborem z balíèku %s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "balíèek %s (který je novìj¹í, ne¾ %s) je ji¾ nainstalován"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "instalace balíèku %s potøebuje %ld%cB na systému souborù %s"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "instalace balíèku %s potøebuje %ld inodù na systému souborù %s"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "pøedtransakèní syscall v balíèku %s: %s selhalo: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s"
@@ -2292,60 +2292,60 @@ msgstr "nemohu zapsat do %%%s %s\n"
 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:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, 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:2150
+#: lib/psm.c:2151
 #, 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:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
@@ -2863,13 +2863,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Podpisu: velikost(%d)+vata(%d)\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
index 992dff5..aba262c 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -828,7 +828,7 @@ msgstr "Kunne ikke l
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -858,7 +858,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1434,7 +1434,7 @@ msgid " failed - "
 msgstr " mislykkedes - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1443,76 +1443,76 @@ msgstr ""
 "\"B\"-afhængighed kræver en epoke (antager samme som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 #, fuzzy
 msgid "NO "
 msgstr "IKKE O.K."
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-3s (husket)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s JA (rpmrc tilfører)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s JA (rpmlib tilfører)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s JA (db-filer)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s JA (db tilfører)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s JA (db-pakke)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NEJ\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n"
@@ -1520,42 +1520,42 @@ msgstr "%s: (%s, %s) tilf
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "pakke %s skaber konflikt: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "========== gemmer tsort-relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "LØKKE:\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsætter tsort ...\n"
 
@@ -1607,46 +1607,46 @@ msgstr "kunne ikke 
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukendt enhed\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -2197,68 +2197,68 @@ msgstr "underskriv en pakke (slet nuv
 msgid "generate signature"
 msgstr "generér PGP/GPG-signatur"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " kræves af %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " skaber konflikt med %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "pakken %s hører til en anden arkitektur"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "pakken %s hører til et andet operativsystem"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "pakken %s er allerede installeret"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sti %s i pakke %s kan ikke omrokeres"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "filen %s skaber konflikt mellem den forsøgte installation af %s og %s"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "filen %s fra installationen af %s skaber konflikt med fil fra pakken %s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "pakke %s (som er nyere end %s) er allerede installeret"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "installation af pakke %s kræver %ld%cb på %s-filsystemet"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "installation af pakken %s kræver %ld inode'r på %s-filsystemet"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "pakke %s prætransaktion-systemkald: %s mislykkedes: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ukendt fejl %d under arbejdet med pakken %s"
@@ -2311,62 +2311,62 @@ msgstr "kunne ikke skrive til %s\n"
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
@@ -2885,13 +2885,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signaturfyld : %d\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
index 40af7b3..66decd8 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -921,7 +921,7 @@ msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
@@ -956,7 +956,7 @@ msgstr "Nicht m
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1569,82 +1569,82 @@ msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
@@ -1652,43 +1652,43 @@ msgstr "die Datei 
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
 # FIXME
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1743,47 +1743,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -2363,71 +2363,71 @@ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 msgid "generate signature"
 msgstr "PGP-Signatur generieren"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " wird von %s-%s-%s gebraucht\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " steht im Konflikt mit %s-%s-%s\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr " steht im Konflikt mit %s-%s-%s\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2483,63 +2483,63 @@ msgstr "kann Datei %s nicht 
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "Keine Stufen ausführen"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
@@ -3081,13 +3081,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
index cd1416c..e8ca532 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index a4715ae..0088e0c 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -835,7 +835,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
@@ -865,7 +865,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1452,82 +1452,82 @@ msgid " failed - "
 msgstr "pgp epäonnistui"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
@@ -1535,42 +1535,42 @@ msgstr "tiedostoa %s ei omista mik
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1622,46 +1622,46 @@ msgstr "en voinut avata %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -2230,67 +2230,67 @@ msgstr "allekirjoita paketti (hylk
 msgid "generate signature"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr "vaatii %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2343,61 +2343,61 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
@@ -2932,13 +2932,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
index ffe4166..377ebe1 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -870,7 +870,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -900,7 +900,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1492,82 +1492,82 @@ msgid " failed - "
 msgstr "La construction a chou.\n"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1575,42 +1575,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1660,46 +1660,46 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2283,67 +2283,67 @@ msgstr ""
 msgid "generate signature"
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2396,62 +2396,62 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
@@ -2981,13 +2981,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 742117e..9137461 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: 2001-01-13 22:31+0100\n"
 "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
 "Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -811,7 +811,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -841,7 +841,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1406,82 +1406,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1489,42 +1489,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1574,46 +1574,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2132,67 +2132,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2245,60 +2245,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2812,13 +2812,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 342b7db..b1a0485 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -815,7 +815,7 @@ msgstr "Get ekki lesi
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
@@ -845,7 +845,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr "gat ekki opna
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -2142,67 +2142,67 @@ msgstr ""
 msgid "generate signature"
 msgstr "búa til undirskrift"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2255,60 +2255,60 @@ msgstr "get ekki rita
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
@@ -2822,13 +2822,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 42aa8b4..bdec40a 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -862,7 +862,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
@@ -892,7 +892,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
@@ -1484,7 +1484,7 @@ msgid " failed - "
 msgstr "¼ºÇÔ - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1493,75 +1493,75 @@ msgstr ""
 "\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %s ¤Ï db ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %s ¤Ï db ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
@@ -1569,42 +1569,42 @@ msgstr "%s: %s 
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤¹: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1656,46 +1656,46 @@ msgstr "%s 
 msgid "file %s is on an unknown device\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -2281,76 +2281,76 @@ msgstr "
 msgid "generate signature"
 msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr "¤Ï %s-%s-%s ¤ËɬÍפȤµ¤ì¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " %s-%s-%s ¤È¶¥¹ç¤·¤Þ¤¹\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã¸þ¤±¤Ç¤¹"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë OS ¸þ¤±¤Ç¤¹"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, fuzzy, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 "¥Õ¥¡¥¤¥ë %s ¤Ï %s-%s-%s ¤È %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "%s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤«¤é¤Î¥Õ¥¡¥¤¥ë %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤«¤é¤Î¥Õ¥¡¥¤¥ë"
 "¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s (%s-%s-%s¤è¤ê¤â¿·¤·¤¤¤â¤Î) ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ"
 "¤¹"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å"
 "¤Ç)"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å"
 "¤Ç)"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
@@ -2404,62 +2404,62 @@ msgstr "%s 
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
@@ -2992,13 +2992,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
index 70ff5ac..7b375b0 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -822,7 +822,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -852,7 +852,7 @@ msgstr "%s 
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
@@ -1424,7 +1424,7 @@ msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1433,75 +1433,75 @@ msgstr ""
 "\"B\" ÀÇÁ¸¼ºÀº Áß¿ä½Ã µÇ´Â °Í(epoch)À» ÇÊ¿ä·Î ÇÕ´Ï´Ù (\"A\" ·Î °¡Á¤ÇÕ´Ï´Ù)\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr "¿¹"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr "¾Æ´Ï¿À"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-s (ij½ÃµÊ)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s ¿¹ (db ÆÄÀÏ)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s ¿¹ (db ÆÐÅ°Áö)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s ¾Æ´Ï¿À\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÀÇÁ¸(Depends) Ä³½Ã¿¡ Ãß°¡µÇ¾ú½À´Ï´Ù.\n"
@@ -1509,43 +1509,43 @@ msgstr "%s: (%s, %s) 
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "ÆÐÅ°Áö %s (ÀÌ)°¡ Ãæµ¹ÇÔ: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, ±íÀÌ[depth])\n"
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÈÄÀÓÀÚ [successors only] (Ç¥Çö ¼ø)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "·çÇÁ(LOOP):\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
 
@@ -1597,47 +1597,47 @@ msgstr "%s (
 msgid "file %s is on an unknown device\n"
 msgstr "%s ÆÄÀÏÀÌ ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -2173,72 +2173,72 @@ msgstr "
 msgid "generate signature"
 msgstr "¼­¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " (Àº)´Â %s-%s-%s ¿¡¼­ ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " %s-%s-%s (¿Í)°ú Ãæµ¹ÇÕ´Ï´Ù\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "%s (Àº)´Â ´Ù¸¥ ¾ÆÅ°ÅØÃĸ¦ À§ÇÑ ÆÐÅ°ÁöÀÔ´Ï´Ù"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "%s (Àº)´Â ´Ù¸¥ ¿î¿µÃ¼Á¦¸¦ À§ÇÑ ÆÐÅ°ÁöÀÔ´Ï´Ù"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "%2$s ÆÐÅ°Áö ¾ÈÀÇ %1$s °æ·Î´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "%2$s (¿Í)°ú %3$s ÀÇ ¼³Ä¡ °úÁ¤¿¡¼­ %1$s ÆÄÀÏÀÌ ¼­·Î Ãæµ¹ÇÕ´Ï´Ù"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "%2$s ¿¡¼­ ¼³Ä¡µÇ´Â %1$s ÆÄÀÏÀº %3$s ÆÐÅ°ÁöÀÇ ÆÄÀÏ°ú Ãæµ¹ÇÕ´Ï´Ù"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "%s ÆÐÅ°Áö (%s º¸´Ù ÃÖ½ÅÀÇ ÆÐÅ°Áö)´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 "%4$s ÆÄÀϽýºÅÛ »ó¿¡¼­ %1$s ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ °æ¿ì¿¡´Â %2$ld%3$cb (ÀÌ)°¡ ÇÊ¿äÇÕ"
 "´Ï´Ù"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 "%3$s ÆÄÀϽýºÅÛ »ó¿¡¼­ %1$s ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ °æ¿ì¿¡´Â %2$ld ÀÇ ¾ÆÀ̳ëµå(inode)"
 "°¡ ÇÊ¿äÇÕ´Ï´Ù"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 "%s ÆÐÅ°ÁöÀÇ ¼±(pre)-Æ®·£Àè¼Ç ½Ã½ºÅÛÄÝ(syscall): %s (ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2292,66 +2292,66 @@ msgstr "%%%s %s (
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ¿ä±¸µË´Ï´Ù, ¹ÙÀ̳ʸ®¸¦ Ã£¾Ò½À´Ï´Ù\n"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s (ÀÌ)°¡ %d ÀÇ ÆÄÀÏÀ» °®°í ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, 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:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
@@ -2868,13 +2868,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
index 745c0b0..cb5a94f 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -825,7 +825,7 @@ msgstr "Kunne ikke 
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -855,7 +855,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1425,82 +1425,82 @@ msgid " failed - "
 msgstr " feilet - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr "NEI"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "pakke %s er allerede installert"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1508,42 +1508,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1593,46 +1593,46 @@ msgstr "klarte ikke 
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukjent enhet\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -2164,67 +2164,67 @@ msgstr "signer en pakke (forkast n
 msgid "generate signature"
 msgstr "generer signatur"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " kreves av %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " er i konflikt med %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "pakke %s er for en annen arkitektur"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "pakke %s er for et annet operativsystem"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "pakke %s er allerede installert"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sti %s i pakke %s kan ikke relokeres"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2277,60 +2277,60 @@ msgstr "kan ikke skrive til %%%s %s\n"
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
@@ -2846,13 +2846,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
index a1a797e..4e052b6 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -852,7 +852,7 @@ msgstr "Nie mo
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
@@ -882,7 +882,7 @@ msgstr "Nie mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1466,83 +1466,83 @@ msgid " failed - "
 msgstr " nie powiod³o siê -"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 #, fuzzy
 msgid "NO "
 msgstr "NIE DOBRZE"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
@@ -1550,42 +1550,42 @@ msgstr "plik %s nie nale
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "pakiet %s jest w konflikcie: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1637,46 +1637,46 @@ msgstr "nie mo
 msgid "file %s is on an unknown device\n"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linia %d: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
@@ -2244,69 +2244,69 @@ msgstr "podpisz pakiet (porzu
 msgid "generate signature"
 msgstr "generuj sygnaturê PGP/GPG"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " jest wymagany przez %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " jest w konflikcie z %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 "pakiet %s-%s-%s (który jest nowszy ni¿ %s-%s-%s) jest ju¿ zainstalowany"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
@@ -2360,61 +2360,61 @@ msgstr "nie mo
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, 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:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, 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:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
@@ -2945,13 +2945,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
index f6e9ea9..766c2a7 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -823,7 +823,7 @@ msgstr "N
 msgid "Could not open %s: %s\n"
 msgstr "Não consigo aceder ao %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Não consegui gravar o pacote: %s\n"
@@ -853,7 +853,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Gravei: %s\n"
@@ -1421,7 +1421,7 @@ msgid " failed - "
 msgstr " falhou - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1430,76 +1430,76 @@ msgstr ""
 "A dependência \"B\" precisa duma época (assumindo a mesma que \"A\")\n"
 "\t %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s     A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 #, fuzzy
 msgid "NO "
 msgstr "NÃO-OK"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "não consigo abrir a base de dados Packages em %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "o pacote %s já está instalado"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-3s (em cache)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s SIM (ficheiros db)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s SI (oferecidos pelo db)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s SIM (pacote db)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NÃO\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) adicionado à cache de dependências.\n"
@@ -1507,42 +1507,42 @@ msgstr "%s: (%s, %s) adicionado 
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "requisito %s-%s-%s do pacote não satisfeito: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "o pacote %s está em conflito: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "=========== a guardar as relações do tsort\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== só os sucessores (ordem de apresentação)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "CICLO:\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== a prosseguir o tsort ...\n"
 
@@ -1594,46 +1594,46 @@ msgstr "falhei ao aceder ao %s: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "o ficheiro %s está num dispositivo desconhecido\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linha %d: %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gravado como %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "o rmdir da %s falhou: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "o acesso ao %s falhou: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s criado como %s\n"
@@ -2176,67 +2176,67 @@ msgstr "assinar um pacote (retira a assinatura actual)"
 msgid "generate signature"
 msgstr "gerar a assinatura PGP/GPG"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " é necessário pelo %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " está em conflito com o %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "o pacote %s é para uma arquitectura diferente"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "o pacote %s é para um sistema operativo diferente"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "o pacote %s já está instalado"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "a directoria %s no pacote %s não pode ser mudada de sítio"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "o ficheiro %s está em conflito com as tentativas de instalação do %s e %s"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "o ficheiro %s da instalação do %s está em conflito com o ficheiro do pacote %s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "o pacote %s (que é mais recente que o %s) já está instalado"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "a instalação do pacote %s precisa de %ld%cb no sistema de ficheiros %s"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "a instalação do pacote %s precisa de %ld 'inodes' no sistema de ficheiros %s"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "a(s) chamada(s) de pré-transacção do pacote %s: %s falhou: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s"
@@ -2289,60 +2289,60 @@ msgstr "n
 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:1286
+#: lib/psm.c:1287
 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:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "a correr os programas de pós-instalação (se existirem)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, 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:2159
+#: lib/psm.c:2160
 #, 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:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " no ficheiro "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "falhei ao aceder ao %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "O %s falhou\n"
@@ -2859,13 +2859,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "'Pad' ou preenchimento da assinatura: %d\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignorado devido à opção missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "a excluir a directoria %s\n"
index 71701ad..a1bd182 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 
 #: build.c:36
 #, fuzzy
@@ -911,7 +911,7 @@ msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -946,7 +946,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1578,83 +1578,83 @@ msgid " failed - "
 msgstr "Construo falhou.\n"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
 # , c-format
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1662,42 +1662,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "no foi passado pacote para instalao"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1750,50 +1750,50 @@ msgstr "No consegui abrir: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2370,67 +2370,67 @@ msgstr "assine um pacote (descarte a assinatura corrente)"
 msgid "generate signature"
 msgstr "gere assinatura PGP"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2511,62 +2511,62 @@ msgstr "No consegui abrir: %s\n"
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "no execute nenhum estgio"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, fuzzy, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
@@ -3125,7 +3125,7 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3139,7 +3139,7 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
index 68f49e9..3965138 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: 1999-04-10 12:00+EST\n"
 "Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
 "Language-Team: Romanian <ro@li.org>\n"
@@ -811,7 +811,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -841,7 +841,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1406,82 +1406,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1489,42 +1489,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1574,46 +1574,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2132,67 +2132,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2245,60 +2245,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2812,13 +2812,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index e1d084e..0adfefd 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index e3c5fc4..a84855d 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -834,7 +834,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@@ -864,7 +864,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
@@ -1442,7 +1442,7 @@ msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1451,75 +1451,75 @@ msgstr ""
 "ÄÌÑ ÚÁ×ÉÓÉÍÏÓÔÉ \"B\" ÎÕÖÎÏ ÕËÁÚÁÔØ \"epoch\" (ÔÁË ÖÅ ËÁË ÄÌÑ \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr "äá"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr "îåT"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-s (cached)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s YES (rpmrc provides)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s YES (rpmlib provides)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s YES (db files)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s YES (db provides)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s YES (db package)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NO\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
@@ -1527,44 +1527,44 @@ msgstr "%s: (%s, %s) 
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
 "ÇÌÕÂÉÎÁ)\n"
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "ãéëì:\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
 
@@ -1616,47 +1616,47 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -2192,67 +2192,67 @@ msgstr "
 msgid "generate signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " ÎÕÖÅΠÄÌÑ %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "ÐÕÔØ %s × ÐÁËÅÔÅ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s É %s"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "ÆÁÊÌ %s ÉÚ ÕÓÔÁÎÏ×ÌÅÎÎÏÇÏ ÐÁËÅÔÁ %s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "ÐÁËÅÔ %s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld%cb ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld inodes ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "ÐÁËÅÔ %s pre-transaction syscall(s): %s: ÏÛÉÂËÁ: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s"
@@ -2305,60 +2305,60 @@ msgstr "
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
@@ -2876,13 +2876,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
index 173f2d0..c8df703 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -850,7 +850,7 @@ msgstr "Nie je mo
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -880,7 +880,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
@@ -1465,83 +1465,83 @@ msgid " failed - "
 msgstr " zlyhalo - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 #, fuzzy
 msgid "NO "
 msgstr "NIE JE V PORIADKU"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
@@ -1549,42 +1549,42 @@ msgstr "s
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "balík %s koliduje: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "odstraòuje sa index skupín\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1636,46 +1636,46 @@ msgstr "nepodarilo sa otvori
 msgid "file %s is on an unknown device\n"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -2243,67 +2243,67 @@ msgstr "podp
 msgid "generate signature"
 msgstr "vytvori» PGP/GPG podpis"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " je vy¾adované %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2357,61 +2357,61 @@ msgstr "nie je mo
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
@@ -2942,13 +2942,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
index 00f57fc..4fcaed0 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.178 2001/10/29 20:12:43 jbj Exp $
+# $Id: sl.po,v 1.179 2001/10/29 23:40:24 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -848,7 +848,7 @@ msgstr "Ikone %s ni mo
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
@@ -878,7 +878,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1466,7 +1466,7 @@ msgid " failed - "
 msgstr " neuspe¹no - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1475,76 +1475,76 @@ msgstr ""
 "odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 #, fuzzy
 msgid "NO "
 msgstr "NI DOBRO"
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-3s (predpomnjeno)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s DA (db datoteke)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s DA (db ponudbe)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %s zadovoljen ob paketih db.\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NE\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
@@ -1552,42 +1552,42 @@ msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s jw v sporu z: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1639,46 +1639,46 @@ msgstr "neuspe
 msgid "file %s is on an unknown device\n"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -2243,68 +2243,68 @@ msgstr "podpi
 msgid "generate signature"
 msgstr "izdelava podpisa PGP/GPG"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " potrebuje %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " je v sporu z %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "paket %s-%s-%s je za drug tip arhitekture"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "paket %s-%s-%s je za drug operacijski sistem"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paketa %s ni mo¾no prestaviti\n"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, fuzzy, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "datoteka %s je v sporu med poskusom namestitve %s in %s"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 "datoteka %s name¹èena z %s-%s-%s je v sporu z datoteko iz paketa %s-%s-%s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paket %s-%s-%s (ki je novej¹i kot %s-%s-%s) je ¾e name¹èen"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, fuzzy, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, fuzzy, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "paket %s pred-prenosljivih sistemskih klicov: %s ni uspelo: %s"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, fuzzy, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
@@ -2358,61 +2358,61 @@ msgstr "pisanje na %s ni mo
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, 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:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
@@ -2940,13 +2940,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
index 0e398d0..0ce572b 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -833,7 +833,7 @@ msgstr "Ne mogu da upi
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
@@ -863,7 +863,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1450,82 +1450,82 @@ msgid " failed - "
 msgstr "PGP omanuo"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, fuzzy, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
@@ -1533,42 +1533,42 @@ msgstr "datoteka %s ne pripada nijednom paketu\n"
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paket %s nije naveden u %s"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1620,46 +1620,46 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -2229,67 +2229,67 @@ msgstr "potpi
 msgid "generate signature"
 msgstr "napravi PGP potpis"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " je potreban paketu %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " se sudara sa %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, fuzzy, c-format
 msgid "package %s is for a different architecture"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, fuzzy, c-format
 msgid "package %s is for a different operating system"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, fuzzy, c-format
 msgid "package %s is already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, fuzzy, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, fuzzy, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr " se sudara sa %s-%s-%s\n"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, fuzzy, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, fuzzy, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2342,61 +2342,61 @@ msgstr "Ne mogu da otvorim datoteku %s: "
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
@@ -2931,13 +2931,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
index aa68188..534b122 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -825,7 +825,7 @@ msgstr "Kan inte l
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
@@ -855,7 +855,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1427,7 +1427,7 @@ msgid " failed - "
 msgstr " misslyckades - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1436,75 +1436,75 @@ msgstr ""
 "\"B\"-beroendet behöver en epok (antar samma som \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr "JA"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr "NEJ "
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "paket %s är redan installerat"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-s (cachad)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s JA (db-filer)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s JA (db-tillhandahållande)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s JA (db-paket)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NEJ\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
@@ -1512,43 +1512,43 @@ msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s står i konflikt: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "tar bort %s-%s-%s \"%s\" från tsort-relationer.\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "========== noterar alla relationer\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== endast efterföljare (presentationsordning)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "LOOP:\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== fortsätter med tsort ...\n"
 
@@ -1600,47 +1600,47 @@ msgstr "kunde inte 
 msgid "file %s is on an unknown device\n"
 msgstr "filen %s är på en okänd enhet\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s skapad med rättigheter %04o.\n"
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, 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:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -2175,67 +2175,67 @@ msgstr "signera ett paket (sl
 msgid "generate signature"
 msgstr "generera signatur"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " behövs av %s-%s-%s\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " står i konflikt med %s-%s-%s\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "paket %s är för en annan arkitektur"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "paket %s är för ett annat operativsystem"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "paket %s är redan installerat"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "sökväg %s i paket %s är inte relokerbar"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "fil %s är en konflikt mellan installationsförsök av %s och %s"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "fil %s från installation av %s står i konflikt med filen från paket %s"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "paket %s (som är nyare än %s) är redan installerat"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "installation av paket %s kräver %ld%cB på filsystem %s"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "installation av paket %s kräver %ld inoder på filsystem %s"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "paket %s systemanrop före transaktion: %s misslyckades: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "okänt fel %d uppträdde under behandling av paket %s"
@@ -2288,61 +2288,61 @@ msgstr "kan inte skriva till %%%s %s\n"
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kör (eventuellt) %s-skript\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, 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:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
@@ -2861,13 +2861,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
index 7f94a56..e96a002 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\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"
@@ -836,7 +836,7 @@ msgstr "%s'den ba
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
@@ -866,7 +866,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:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
@@ -1447,7 +1447,7 @@ msgid " failed - "
 msgstr " baþarýsýz - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, fuzzy, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -1456,75 +1456,75 @@ msgstr ""
 "\"B\" baðýmlýlýðý bir dönemsellik gerektirir (tabii ki \"A\" da)\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr "EVET"
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr "HAYIR "
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, fuzzy, c-format
 msgid "package %s already added, ignoring\n"
 msgstr "%s zaten kurulu"
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr "%s: %-45s %-s (arabellekli)\n"
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s EVET (db dosyalarý)\n"
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s EVET (db saðlar)\n"
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr "%s: %-45s EVET (db paketi)\n"
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s HAYIR\n"
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n"
@@ -1532,43 +1532,43 @@ msgstr "%s: (%s, %s) Ba
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "%s paketi çeliþiyor: %s\n"
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr "========== tsort baðýntýlarý kaydediliyor\n"
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr "========== sadece ardýllar (sunum sýrasý)\n"
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr "ÇEVRÝM:\n"
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr "========== tsort sürüyor ...\n"
 
@@ -1620,47 +1620,47 @@ msgstr "%s a
 msgid "file %s is on an unknown device\n"
 msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n"
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 #, fuzzy
 msgid "========== Directories not explictly included in package:\n"
 msgstr "========= Pakette bulunmayan dizinler:\n"
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, 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:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -2199,67 +2199,67 @@ msgstr "paketi imzalar (mevcut imza kald
 msgid "generate signature"
 msgstr "imza üretir"
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " %s-%s-%s için gerekli\n"
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " %s-%s-%s ile çeliþiyor\n"
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr "%s farklý bir mimari için"
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr "%s farklý bir iþletim sistemi için"
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr "%s zaten kurulu"
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr "%s dosya yolu %s paketinde yeniden konumlandýrýlamaz"
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr "%s dosyasý kalkýþýlan %s ve %s kurulumlarý arasýnda çeliþiyor"
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr "%s dosyasýnýn %s kurulumu %s kurulumundaki dosya ile çeliþiyor"
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr "%s paketi zaten yüklü (%s sürümünden daha yeni)"
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr "%s kurulumu %ld%cb gerektiriyor (%s dosya sisteminde)"
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr "%s kurulumu %ld i-düðüm gerektiriyor (%s dosya sisteminde)"
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr "%s iþlem öncesi sistem çaðrý(sý/larý): %s baþarýsýz: %s"
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý"
@@ -2312,60 +2312,60 @@ msgstr "%%%s dosyas
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, 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:1571
+#: lib/psm.c:1572
 #, 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:1918
+#: lib/psm.c:1919
 #, 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:2035
+#: lib/psm.c:2036
 #, 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:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, 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:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
@@ -2882,13 +2882,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 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-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index cd1416c..e8ca532 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-29 15:04-0500\n"
+"POT-Creation-Date: 2001-10-29 18:24-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:603 lib/psm.c:2113
+#: build/pack.c:603 lib/psm.c:2114
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:683 lib/psm.c:2379
+#: build/pack.c:683 lib/psm.c:2380
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1411,82 +1411,82 @@ msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:206
+#: lib/depends.c:202
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:235
+#: lib/depends.c:231
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "YES"
 msgstr ""
 
-#: lib/depends.c:236 lib/depends.c:835 lib/depends.c:968
+#: lib/depends.c:232 lib/depends.c:838 lib/depends.c:971
 msgid "NO "
 msgstr ""
 
-#: lib/depends.c:375
+#: lib/depends.c:371
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/depends.c:556
+#: lib/depends.c:554
 #, c-format
 msgid "newer package %s already added, skipping %s\n"
 msgstr ""
 
-#: lib/depends.c:561
+#: lib/depends.c:559
 #, c-format
 msgid "package %s already added, ignoring\n"
 msgstr ""
 
-#: lib/depends.c:566
+#: lib/depends.c:564
 #, c-format
 msgid "older package %s already added, replacing with %s\n"
 msgstr ""
 
-#: lib/depends.c:834
+#: lib/depends.c:837
 #, c-format
 msgid "%s: %-45s %-s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:863
+#: lib/depends.c:866
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:880
+#: lib/depends.c:883
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:904
+#: lib/depends.c:907
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:917
+#: lib/depends.c:920
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:931
+#: lib/depends.c:934
 #, c-format
 msgid "%s: %-45s YES (db package)\n"
 msgstr ""
 
-#: lib/depends.c:947
+#: lib/depends.c:950
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:968
+#: lib/depends.c:971
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
@@ -1494,42 +1494,42 @@ msgstr ""
 #. requirements are satisfied.
 #. @switchbreak@
 #. requirements are not satisfied.
-#: lib/depends.c:1041
+#: lib/depends.c:1044
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1120
+#: lib/depends.c:1123
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1374
+#: lib/depends.c:1377
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1530
+#: lib/depends.c:1533
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1590
+#: lib/depends.c:1598
 msgid ""
 "========== tsorting packages (order, #predecessors, #succesors, depth)\n"
 msgstr ""
 
-#: lib/depends.c:1640
+#: lib/depends.c:1650
 msgid "========== successors only (presentation order)\n"
 msgstr ""
 
-#: lib/depends.c:1693
+#: lib/depends.c:1711
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1723
+#: lib/depends.c:1741
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -1579,46 +1579,46 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:308
+#: lib/fsm.c:306
 msgid "========== Directories not explictly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:310
+#: lib/fsm.c:308
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1171
+#: lib/fsm.c:1169
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1452
+#: lib/fsm.c:1450
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1573 lib/fsm.c:1701
+#: lib/fsm.c:1571 lib/fsm.c:1699
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1727
+#: lib/fsm.c:1725
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1733
+#: lib/fsm.c:1731
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1743
+#: lib/fsm.c:1741
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1762
+#: lib/fsm.c:1760
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -2137,67 +2137,67 @@ msgstr ""
 msgid "generate signature"
 msgstr ""
 
-#: lib/problems.c:224
+#: lib/problems.c:250
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:227
+#: lib/problems.c:253
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr ""
 
-#: lib/problems.c:267
+#: lib/problems.c:293
 #, c-format
 msgid "package %s is for a different architecture"
 msgstr ""
 
-#: lib/problems.c:272
+#: lib/problems.c:298
 #, c-format
 msgid "package %s is for a different operating system"
 msgstr ""
 
-#: lib/problems.c:277
+#: lib/problems.c:303
 #, c-format
 msgid "package %s is already installed"
 msgstr ""
 
-#: lib/problems.c:282
+#: lib/problems.c:308
 #, c-format
 msgid "path %s in package %s is not relocateable"
 msgstr ""
 
-#: lib/problems.c:287
+#: lib/problems.c:313
 #, c-format
 msgid "file %s conflicts between attempted installs of %s and %s"
 msgstr ""
 
-#: lib/problems.c:292
+#: lib/problems.c:318
 #, c-format
 msgid "file %s from install of %s conflicts with file from package %s"
 msgstr ""
 
-#: lib/problems.c:297
+#: lib/problems.c:323
 #, c-format
 msgid "package %s (which is newer than %s) is already installed"
 msgstr ""
 
-#: lib/problems.c:302
+#: lib/problems.c:328
 #, c-format
 msgid "installing package %s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:312
+#: lib/problems.c:338
 #, c-format
 msgid "installing package %s needs %ld inodes on the %s filesystem"
 msgstr ""
 
-#: lib/problems.c:317
+#: lib/problems.c:343
 #, c-format
 msgid "package %s pre-transaction syscall(s): %s failed: %s"
 msgstr ""
 
-#: lib/problems.c:324
+#: lib/problems.c:350
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s"
 msgstr ""
@@ -2250,60 +2250,60 @@ msgstr ""
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:1286
+#: lib/psm.c:1287
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:1396
+#: lib/psm.c:1397
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:1564
+#: lib/psm.c:1565
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:1571
+#: lib/psm.c:1572
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1918
+#: lib/psm.c:1919
 #, c-format
 msgid "%s: %s-%s-%s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:2035
+#: lib/psm.c:2036
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
 msgstr ""
 
-#: lib/psm.c:2150
+#: lib/psm.c:2151
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2159
+#: lib/psm.c:2160
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:2200
+#: lib/psm.c:2201
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2201
+#: lib/psm.c:2202
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:2387
+#: lib/psm.c:2388
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:2390
+#: lib/psm.c:2391
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
@@ -2817,13 +2817,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:244
+#: lib/transaction.c:238
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:867
+#: lib/transaction.c:863
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
index 3bfd182..d732769 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -544,3 +544,4 @@ fi
 - no-brainer refcounts for fi object, debug the mess.
 - dump the header early in transaction, recreate fi before installing.
 - start hiding availablePackage data/methods in rpmal.c/rpmal.h.
+- add some dinky availablePackage methods.
index 0288d50..cbd4b52 100644 (file)
@@ -544,3 +544,4 @@ fi
 - no-brainer refcounts for fi object, debug the mess.
 - dump the header early in transaction, recreate fi before installing.
 - start hiding availablePackage data/methods in rpmal.c/rpmal.h.
+- add some dinky availablePackage methods.