- API: replace rpmdbUpdateRecord with rpmdbSetIteratorModified.
authorjbj <devnull@localhost>
Thu, 27 Apr 2000 12:50:54 +0000 (12:50 +0000)
committerjbj <devnull@localhost>
Thu, 27 Apr 2000 12:50:54 +0000 (12:50 +0000)
CVS patchset: 3706
CVS date: 2000/04/27 12:50:54

19 files changed:
CHANGES
lib/install.c
lib/rpmdb.c
lib/rpmlib.h
po/cs.po
po/de.po
po/fi.po
po/fr.po
po/ja.po
po/pl.po
po/pt_BR.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
rpm.spec

diff --git a/CHANGES b/CHANGES
index ca1675f..9648326 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -20,7 +20,7 @@
        - make db indices as lightweight as possible, with per-dbi config.
        - db1.c will never be needed, eliminate.
        - API: merge rebuilddb.c into rpmdb.c.
-       - API: replace rpmdbUpdateRecord with rpmdbRemove/rpmdbAdd.
+       - API: replace rpmdbUpdateRecord with rpmdbSetIteratorModified.
        - API: replace rpmdbFindByLabel with RPMDBI_LABEL iteration.
        - API: replace rpmdbGetRecord with iterators.
        - API: replace findMatches with iterators.
index 09b986e..db1c29f 100644 (file)
@@ -233,53 +233,42 @@ static void trimChangelog(Header h)
 }
 
 /** */
-static int markReplacedFiles(rpmdb db, struct sharedFileInfo * replList)
+static int markReplacedFiles(rpmdb db, const struct sharedFileInfo * replList)
 {
-    struct sharedFileInfo * fileInfo;
-    Header secHeader = NULL, sh;
-    char * secStates = NULL;
-    int secOffset = 0;
-    int type, count;
-
-    for (fileInfo = replList; fileInfo->otherPkg; fileInfo++) {
-       if (secOffset != fileInfo->otherPkg) {
-           rpmdbMatchIterator mi;
-
-           if (secHeader != NULL) {
-               /* ignore errors here - just do the best we can */
-
-               rpmdbRemove(db, secOffset, 1);
-               rpmdbAdd(db, secHeader);
-               headerFree(secHeader);
-           }
-
-           secOffset = fileInfo->otherPkg;
-
-           mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, &secOffset, sizeof(secOffset));
-           sh = rpmdbNextIterator(mi);
-           if (sh == NULL)
-               secOffset = 0;
-           else
-               secHeader = headerCopy(sh);     /* so we can modify it */
-           rpmdbFreeIterator(mi);
-
-           headerGetEntry(secHeader, RPMTAG_FILESTATES, &type,
-                          (void **) &secStates, &count);
+    const struct sharedFileInfo * fileInfo;
+    rpmdbMatchIterator mi;
+    Header h;
+    unsigned int * offsets;
+    int num;
+
+    for (num = 0, fileInfo = replList; fileInfo->otherPkg; fileInfo++)
+       num++;
+    offsets = alloca(num * sizeof(*offsets));
+    for (num = 0, fileInfo = replList; fileInfo->otherPkg; fileInfo++)
+       offsets[num++] = fileInfo->otherPkg;
+
+    mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, NULL, 0);
+    rpmdbAppendIteratorMatches(mi, offsets, num);
+
+    fileInfo = replList;
+    while ((h = rpmdbNextIterator(mi)) != NULL) {
+       char * secStates;
+       int modified;
+       int count;
+
+       headerGetEntry(h, RPMTAG_FILESTATES, NULL, (void **)&secStates, &count);
+       
+       modified = 0;
+       while ( fileInfo->otherPkg &&
+               fileInfo->otherPkg == rpmdbGetIteratorOffset(mi)) {
+           secStates[fileInfo->otherFileNum] = RPMFILE_STATE_REPLACED;
+           modified = 1;
+           fileInfo++;
        }
 
-       /* by now, secHeader is the right header to modify, secStates is
-          the right states list to modify  */
-
-       secStates[fileInfo->otherFileNum] = RPMFILE_STATE_REPLACED;
-    }
-
-    if (secHeader != NULL) {
-       /* ignore errors here - just do the best we can */
-
-       rpmdbRemove(db, secOffset, 1);
-       rpmdbAdd(db, secHeader);
-       headerFree(secHeader);
+       rpmdbSetIteratorModified(mi, modified);
     }
+    rpmdbFreeIterator(mi);
 
     return 0;
 }
index 1dc5e5a..0fa5bdd 100644 (file)
@@ -46,6 +46,9 @@ static int dbiTagToDbix(int rpmtag)
     return -1;
 }
 
+/**
+ * Initialize database (index, tag) tuple from configuration.
+ */
 static void dbiTagsInit(void)
 {
     static const char * _dbiTagStr_default =
@@ -487,24 +490,26 @@ void dbiFreeIndexSet(dbiIndexSet set) {
     }
 }
 
-/* XXX the signal handling in here is not thread safe */
-
-static sigset_t signalMask;
-
-static void blockSignals(rpmdb rpmdb)
+/**
+ * Disable all signals, returning previous signal mask.
+ */
+static void blockSignals(rpmdb rpmdb, sigset_t * oldMask)
 {
     sigset_t newMask;
 
     if (!(rpmdb && rpmdb->db_major == 3)) {
        sigfillset(&newMask);           /* block all signals */
-       sigprocmask(SIG_BLOCK, &newMask, &signalMask);
+       sigprocmask(SIG_BLOCK, &newMask, oldMask);
     }
 }
 
-static void unblockSignals(rpmdb rpmdb)
+/**
+ * Restore signal mask.
+ */
+static void unblockSignals(rpmdb rpmdb, sigset_t * oldMask)
 {
     if (!(rpmdb && rpmdb->db_major == 3)) {
-       sigprocmask(SIG_SETMASK, &signalMask, NULL);
+       sigprocmask(SIG_SETMASK, oldMask, NULL);
     }
 }
 
@@ -706,7 +711,6 @@ int rpmdbInit (const char * prefix, int perms)
 /* XXX install.c, query.c, transaction.c, uninstall.c */
 static Header rpmdbGetRecord(rpmdb rpmdb, unsigned int offset)
 {
-    int rpmtag;
     dbiIndex dbi;
     void * uh;
     size_t uhlen;
@@ -714,8 +718,7 @@ static Header rpmdbGetRecord(rpmdb rpmdb, unsigned int offset)
     size_t keylen = sizeof(offset);
     int rc;
 
-    rpmtag = 0;        /* RPMDBI_PACKAGES */
-    dbi = dbiOpen(rpmdb, rpmtag, 0);
+    dbi = dbiOpen(rpmdb, RPMDBI_PACKAGES, 0);
     if (dbi == NULL)
        return NULL;
     rc = dbiGet(dbi, &keyp, &keylen, &uh, &uhlen, 0);
@@ -955,7 +958,6 @@ exit:
     return rc;
 }
 
-/* XXX query.c, rpminstall.c */
 /* 0 found matches */
 /* 1 no matches */
 /* 2 error */
@@ -997,23 +999,36 @@ struct _rpmdbMatchIterator {
     const void *       mi_keyp;
     size_t             mi_keylen;
     rpmdb              mi_rpmdb;
-    dbiIndex           mi_dbi;
-    int                        mi_dbix;
+    int                        mi_rpmtag;
     dbiIndexSet                mi_set;
     int                        mi_setx;
     Header             mi_h;
+    int                        mi_modified;
     unsigned int       mi_prevoffset;
     unsigned int       mi_offset;
     unsigned int       mi_filenum;
+    unsigned int       mi_fpnum;
+    unsigned int       mi_dbnum;
     const char *       mi_version;
     const char *       mi_release;
 };
 
 void rpmdbFreeIterator(rpmdbMatchIterator mi)
 {
+    dbiIndex dbi = NULL;
+
     if (mi == NULL)
        return;
 
+    dbi = dbiOpen(mi->mi_rpmdb, RPMDBI_PACKAGES, 0);
+    if (mi->mi_h) {
+       if (mi->mi_modified && mi->mi_prevoffset)
+           dbiUpdateRecord(dbi, mi->mi_prevoffset, mi->mi_h);
+       headerFree(mi->mi_h);
+       mi->mi_h = NULL;
+    }
+    (void) dbiCclose(dbi, NULL, 0);
+
     if (mi->mi_release) {
        xfree(mi->mi_release);
        mi->mi_release = NULL;
@@ -1022,17 +1037,9 @@ void rpmdbFreeIterator(rpmdbMatchIterator mi)
        xfree(mi->mi_version);
        mi->mi_version = NULL;
     }
-    if (mi->mi_h) {
-       headerFree(mi->mi_h);
-       mi->mi_h = NULL;
-    }
     if (mi->mi_set) {
        dbiFreeIndexSet(mi->mi_set);
        mi->mi_set = NULL;
-    } else {
-       dbiIndex dbi = dbiOpen(mi->mi_rpmdb, RPMDBI_PACKAGES, 0);
-       if (dbi)
-           (void) dbiCclose(dbi, NULL, 0);
     }
     if (mi->mi_keyp) {
        xfree(mi->mi_keyp);
@@ -1079,6 +1086,15 @@ void rpmdbSetIteratorVersion(rpmdbMatchIterator mi, const char * version) {
     mi->mi_version = (version ? xstrdup(version) : NULL);
 }
 
+int rpmdbSetIteratorModified(rpmdbMatchIterator mi, int modified) {
+    int rc;
+    if (mi == NULL)
+       return;
+    rc = mi->mi_modified;
+    mi->mi_modified = modified;
+    return rc;
+}
+
 Header rpmdbNextIterator(rpmdbMatchIterator mi)
 {
     dbiIndex dbi;
@@ -1124,14 +1140,17 @@ top:
     if (mi->mi_prevoffset && mi->mi_offset == mi->mi_prevoffset)
        return mi->mi_h;
 
-    /* Retrieve header */
+    /* Retrieve next header */
     if (uh == NULL) {
        rc = dbiGet(dbi, &keyp, &keylen, &uh, &uhlen, 0);
        if (rc)
            return NULL;
     }
 
+    /* Free current header */
     if (mi->mi_h) {
+       if (mi->mi_modified && mi->mi_prevoffset)
+           dbiUpdateRecord(dbi, mi->mi_prevoffset, mi->mi_h);
        headerFree(mi->mi_h);
        mi->mi_h = NULL;
     }
@@ -1153,6 +1172,7 @@ top:
     }
 
     mi->mi_prevoffset = mi->mi_offset;
+    mi->mi_modified = 0;
     return mi->mi_h;
 }
 
@@ -1178,7 +1198,9 @@ static int rpmdbGrowIterator(rpmdbMatchIterator mi,
     if (!(mi && keyp))
        return 1;
 
-    dbi = mi->mi_rpmdb->_dbi[mi->mi_dbix];
+    dbi = dbiOpen(mi->mi_rpmdb, mi->mi_rpmtag, 0);
+    if (dbi == NULL)
+       return 1;
 
     if (keylen == 0)
        keylen = strlen(keyp);
@@ -1237,7 +1259,6 @@ rpmdbMatchIterator rpmdbInitIterator(rpmdb rpmdb, int rpmtag,
     dbiIndexSet set = NULL;
     dbiIndex dbi;
     int isLabel = 0;
-    int dbix;
 
     /* XXX HACK to remove rpmdbFindByLabel/findMatches from the API */
     switch (rpmtag) {
@@ -1247,9 +1268,6 @@ rpmdbMatchIterator rpmdbInitIterator(rpmdb rpmdb, int rpmtag,
        break;
     }
 
-    dbix = dbiTagToDbix(rpmtag);
-    if (dbix < 0)
-       return NULL;
     dbi = dbiOpen(rpmdb, rpmtag, 0);
     if (dbi == NULL)
        return NULL;
@@ -1298,15 +1316,17 @@ rpmdbMatchIterator rpmdbInitIterator(rpmdb rpmdb, int rpmtag,
     mi->mi_keylen = keylen;
 
     mi->mi_rpmdb = rpmdb;
-    mi->mi_dbi = dbi;
+    mi->mi_rpmtag = rpmtag;
 
-    mi->mi_dbix = dbix;
     mi->mi_set = set;
     mi->mi_setx = 0;
     mi->mi_h = NULL;
+    mi->mi_modified = 0;
     mi->mi_prevoffset = 0;
     mi->mi_offset = 0;
     mi->mi_filenum = 0;
+    mi->mi_fpnum = 0;
+    mi->mi_dbnum = 0;
     mi->mi_version = NULL;
     mi->mi_release = NULL;
     return mi;
@@ -1358,6 +1378,7 @@ static inline int removeIndexEntry(dbiIndex dbi, const char * keyp, dbiIndexReco
 int rpmdbRemove(rpmdb rpmdb, unsigned int offset, int tolerant)
 {
     Header h;
+    sigset_t signalMask;
 
 #ifndef        DYING_NOTYET
     h = rpmdbGetRecord(rpmdb, offset);
@@ -1381,7 +1402,7 @@ int rpmdbRemove(rpmdb rpmdb, unsigned int offset, int tolerant)
        rpmMessage(RPMMESS_VERBOSE, "  --- %s-%s-%s\n", n, v, r);
     }
 
-    blockSignals(rpmdb);
+    blockSignals(rpmdb, &signalMask);
 
     {  int dbix;
        dbiIndexRecord rec = dbiReturnIndexRecordInstance(offset, 0);
@@ -1397,7 +1418,7 @@ int rpmdbRemove(rpmdb rpmdb, unsigned int offset, int tolerant)
            rpmtag = dbiTags[dbix];
            dbi = dbiOpen(rpmdb, rpmtag, 0);
 
-           if (dbi->dbi_rpmtag == 0) {
+           if (dbi->dbi_rpmtag == RPMDBI_PACKAGES) {
                (void) dbiDel(dbi, &offset, sizeof(offset), 0);
                continue;
            }
@@ -1469,7 +1490,7 @@ int rpmdbRemove(rpmdb rpmdb, unsigned int offset, int tolerant)
        }
     }
 
-    unblockSignals(rpmdb);
+    unblockSignals(rpmdb, &signalMask);
 
     headerFree(h);
 
@@ -1507,9 +1528,39 @@ static inline int addIndexEntry(dbiIndex dbi, const char *index, dbiIndexRecord
     return 0;
 }
 
+/**
+ * Rewrite a header in the database.
+ *   Note: this is called from a markReplacedFiles iteration, and *must*
+ *   preserve the "join key" (i.e. offset) for the header.
+ * @param dbi          index database handle (always RPMDBI_PACKAGES)
+ * @param offset       join key
+ * @param h            rpm header
+ * @return             0 on success
+ */
+static int dbiUpdateRecord(dbiIndex dbi, int offset, Header h)
+{
+    sigset_t signalMask;
+    void * uh;
+    size_t uhlen;
+    int rc;
+
+    if (_noDirTokens)
+       expandFilelist(h);
+
+    uhlen = headerSizeof(h, HEADER_MAGIC_NO);
+    uh = headerUnload(h);
+    blockSignals(dbi->dbi_rpmdb, &signalMask);
+    rc = dbiPut(dbi, &offset, sizeof(offset), uh, uhlen, 0);
+    unblockSignals(dbi->dbi_rpmdb, &signalMask);
+    free(uh);
+
+    return rc;
+}
+
 /* XXX install.c */
 int rpmdbAdd(rpmdb rpmdb, Header h)
 {
+    sigset_t signalMask;
     const char ** baseNames;
     int count = 0;
     int type;
@@ -1530,7 +1581,7 @@ int rpmdbAdd(rpmdb rpmdb, Header h)
     if (_noDirTokens)
        expandFilelist(h);
 
-    blockSignals(rpmdb);
+    blockSignals(rpmdb, &signalMask);
 
     {
        unsigned int firstkey = 0;
@@ -1540,8 +1591,7 @@ int rpmdbAdd(rpmdb rpmdb, Header h)
        size_t datalen = 0;
        int rc;
 
-       rpmtag = 0;     /* RPMDBI_PACKAGES */
-       dbi = dbiOpen(rpmdb, rpmtag, 0);
+       dbi = dbiOpen(rpmdb, RPMDBI_PACKAGES, 0);
 
        /* XXX db0: hack to pass sizeof header to fadAlloc */
        datap = h;
@@ -1589,12 +1639,10 @@ int rpmdbAdd(rpmdb rpmdb, Header h)
            rpmtag = dbiTags[dbix];
            dbi = dbiOpen(rpmdb, rpmtag, 0);
 
-           if (dbi->dbi_rpmtag == 0) {
-               size_t uhlen = headerSizeof(h, HEADER_MAGIC_NO);
-               void * uh = headerUnload(h);
+           if (dbi->dbi_rpmtag == RPMDBI_PACKAGES) {
+               int xx;
 
-               (void) dbiPut(dbi, &offset, sizeof(offset), uh, uhlen, 0);
-               free(uh);
+               xx = dbiUpdateRecord(dbi, offset, h);
 
                {   const char *n, *v, *r;
                    headerNVR(h, &n, &v, &r);
@@ -1689,7 +1737,7 @@ int rpmdbAdd(rpmdb rpmdb, Header h)
     }
 
 exit:
-    unblockSignals(rpmdb);
+    unblockSignals(rpmdb, &signalMask);
 
     return rc;
 }
@@ -1908,7 +1956,6 @@ int rpmdbFindFpList(rpmdb rpmdb, fingerPrint * fpList, dbiIndexSet * matchList,
 
 }
 
-/** */
 int rpmdbRebuild(const char * rootdir)
 {
     rpmdb olddb;
index 17bf571..0aad02b 100644 (file)
@@ -398,6 +398,7 @@ void rpmdbAppendIteratorMatches(rpmdbMatchIterator mi, int * offsets,
  * Modify iterator to filter out headers that do not match version.
  *  TODO: replace with a more general mechanism.
  * @param mi           rpm database iterator
+ * @param version      version to check for
  */
 void rpmdbSetIteratorVersion(rpmdbMatchIterator mi, const char * version);
 
@@ -405,10 +406,20 @@ void rpmdbSetIteratorVersion(rpmdbMatchIterator mi, const char * version);
  * Modify iterator to filter out headers that do not match release.
  *  TODO: replace with a more general mechanism.
  * @param mi           rpm database iterator
+ * @param release      release to check for
  */
 void rpmdbSetIteratorRelease(rpmdbMatchIterator mi, const char * release);
 
 /**
+ * Modify iterator to mark header for lazy write.
+ *  TODO: replace with a more general mechanism.
+ * @param mi           rpm database iterator
+ * @param modified     new value of modified
+ * @return             previous value
+ */
+int rpmdbSetIteratorModified(rpmdbMatchIterator mi, int modified);
+
+/**
  * Return next package header from iteration.
  * @param mi           rpm database iterator
  * @return             NULL on end of iteration.
index fbf4429..2081889 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 1998-10-10 10:10+0200\n"
 "Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n"
 "Language-Team: Czech <pavelm@terminal.cz>\n"
@@ -2390,90 +2390,90 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "probíhá instalace binárních balíèkù\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "balíèek %s neobsahuje soubory"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, fuzzy, c-format
 msgid "renaming %s to %s\n"
 msgstr "Probíhá získávání %s jako %s\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s nelze pøejmenovat na %s: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 #, fuzzy
 msgid "stopping install as we're running --test\n"
 msgstr "probíhá zastavení zdrojové instalace, nebo» jde jen o testování\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 #, fuzzy
 msgid "running preinstall script (if any)\n"
 msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
@@ -2952,12 +2952,12 @@ msgstr ""
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2965,156 +2965,156 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "chyba: nelze otevøít %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "chyba pøi získávání záznamu %s z %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "chyba pøi ukládání záznamu %s do %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "chyba pøi odstraòování záznamu %s do %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "nebyla nastavena dbpath"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "chyba: nelze otevøít %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "nelze èíst hlavièku u %d pro vyhledání"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "balíèek %s nenalezen v %s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "balíèek %s nenalezen v %s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstraòuje se polo¾ka databáze\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje se rejstøík skupin\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "odstraòuje se rejstøík názvù\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "nelze alokovat prostor pro databázi"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "Probíhá získávání %s jako %s\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "databáze se pøestavuje v koøenovém adresáøi %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "doèasná databáze %s ji¾ existuje"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "vytváøí se adresáø: %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "chyba pøi vytváøení adresáøe %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "otevírá se stará databáze\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "otevírá se nová databáze\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "záznam èíslo %d v databázi je chybný -- vynechává se"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nelze pøidat záznam - pùvodnì u %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "databázi nelze pøestavit; pùvodní databáze zùstává na svém místì\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "starou databázi nelze nahradit novou databází!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nelze odstranit %s: %s\n"
index 6423e50..021a734 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 2.5.2\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 1998-08-03 18:02+02:00\n"
 "Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
 "Language-Team: German <de@li.org>\n"
@@ -2499,90 +2499,90 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "Paket installieren"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/install.c:480
+#: lib/install.c:469
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3068,12 +3068,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -3081,162 +3081,162 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
 # FIXME
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
 # reservieren???
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "kann keinen Platz für die Datenbank bekommen"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
index c846787..e1380fc 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -2430,88 +2430,88 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "asenna paketti"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2990,12 +2990,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -3003,156 +3003,156 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "en voi varata tilaa tietokannalle"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "en voi lisätä tietuetta %d:stä"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "en voinut avata %s: %s"
index f62da29..305e95a 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
 msgid ""
-msgstr "POT-Creation-Date: 2000-04-26 21:07-0400\n"
+msgstr "POT-Creation-Date: 2000-04-27 08:36-0400\n"
 
 #: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422
 #, c-format
@@ -2431,88 +2431,88 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2993,12 +2993,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -3006,155 +3006,155 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 msgid "cannot allocate new instance in database"
 msgstr ""
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
index 8cfa804..8b748cd 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm-3.0.4\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 1999-12-01 22:49 +JST\n"
 "Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
 "Language-Team: JRPM <jrpm@linux.or.jp>\n"
@@ -193,7 +193,7 @@ msgstr "copyright 
 # build root [BuildRoot]
 # net share [¥Í¥Ã¥È¶¦Í­]
 # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.48 2000/04/27 01:11:49 jbj Exp $
+# $Id: ja.po,v 1.49 2000/04/27 12:50:55 jbj Exp $
 #: rpm.c:200
 #, c-format
 msgid "rpm: %s\n"
@@ -2406,87 +2406,87 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/install.c:376
+#: lib/install.c:365
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¥½¡¼¥¹¤Ï: %s\n"
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec ¥Õ¥¡¥¤¥ë¤Ï: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:910
+#: lib/install.c:899
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
@@ -2974,12 +2974,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2987,157 +2987,157 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹ÍѤζõ¤­ÍÆÎ̤¬Â­¤ê¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ÎºîÀ®¥¨¥é¡¼: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
index 902e362..341d4ae 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm-3.0.2\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 1999-05-25 17:00+0100\n"
 "Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
 "Language-Team: Polish <pl@li.org>\n"
@@ -2349,86 +2349,86 @@ msgstr "warto
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr "instacja pakietu ¼ród³owego\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¼ród³a w: %s\n"
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "plik spec w: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr "przebieg testowy - instalacja zatrzymana\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ostrze¿enie: %s utworzony jako %s"
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/install.c:910
+#: lib/install.c:899
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
@@ -2894,12 +2894,12 @@ msgstr ")"
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2907,31 +2907,31 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "b³±d usuwania rekordu %s z %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2940,125 +2940,125 @@ msgstr ""
 "nowym formacie"
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "pakiet %s nie znaleziony w %s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "pakiet %s nie znaleziony w %s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "usuwanie wpisu w bazie\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "usuwanie indeksu grupy\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "usuwanie indeksu nazw\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "nie mo¿na alokowaæ przestrzeni dla bazy danych"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "odbudowywujê bazê danych w rootdir %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "tymczasowa baza danych %s ju¿ istnieje"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "b³±d przy tworzeniu katalogu %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "otwieranie starej bazy danych\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "otwieranie nowej bazy danych\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
index c4e53df..cb107de 100644 (file)
@@ -2,7 +2,7 @@
 # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
 #
 msgid ""
-msgstr "POT-Creation-Date: 2000-04-26 21:07-0400\n"
+msgstr "POT-Creation-Date: 2000-04-27 08:36-0400\n"
 
 #: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422
 #, c-format
@@ -2496,91 +2496,91 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -3063,12 +3063,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -3077,33 +3077,33 @@ msgid ""
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3111,125 +3111,125 @@ msgstr ""
 
 # , c-format
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 msgid "cannot allocate new instance in database"
 msgstr ""
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
index 595770d..3b6f748 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2280,86 +2280,86 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2818,12 +2818,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2831,155 +2831,155 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, c-format
 msgid "error removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr ""
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, c-format
 msgid "key \"%s\" not found in %s"
 msgstr ""
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr ""
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 msgid "cannot allocate new instance in database"
 msgstr ""
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
index 67d90f6..781947d 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=koi8-r\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2356,86 +2356,86 @@ msgstr "
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s"
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr "ÎÅ ÍÏÇÕ ÐÉÓÁÔØ × %s"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n"
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "ÆÁÊÌ spec ×: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅΠÂÉÎÁÒÎÙÊ"
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁΠËÁË %s"
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅΠËÁË %s"
 
-#: lib/install.c:910
+#: lib/install.c:899
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
@@ -2898,12 +2898,12 @@ msgstr ")"
 msgid "OK"
 msgstr "Ok"
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2911,31 +2911,31 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2944,125 +2944,125 @@ msgstr ""
 "ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ"
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅΠנ%s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅΠנ%s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "ÎÅ ÍÏÇÕ ×ÙÄÅÌÉÔØ ÍÅÓÔÏ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÀ ÂÁÚÕ × ËÏÒÎÅ×ÏÍ ËÁÔÁÌÏÇÅ %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÓÔÁÒÕÀ ÂÁÚÕ\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n"
index 3baa832..a96fedd 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 2.93\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 1999-04-08 21:37+02:00\n"
 "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
 "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -2359,86 +2359,86 @@ msgstr "hodnota %%instchangelog v makro-s
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr "in¹taluje sa zdrojový balík\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr "zdroje v: %s\n"
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-súbor v: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "premenovanie %s na %s zlyhalo: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varovanie: %s vytvorené ako %s"
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/install.c:910
+#: lib/install.c:899
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
@@ -2902,12 +2902,12 @@ msgstr ")"
 msgid "OK"
 msgstr "V PORIADKU"
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2915,31 +2915,31 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2948,125 +2948,125 @@ msgstr ""
 "databázy v novom formáte"
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "balík %s nebol nájdený v %s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "balík %s nebol nájdený v %s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstraòuje sa záznam z databázy\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "nie je mo¾né prideli» miesto pre databázu"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu sa vytvára databáza v adresári %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "doèasná databáza %s u¾ existuje"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "chyba pri vytváraní adresára %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "otvára sa stará databáza\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "otvára sa nová databáza\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nie je mo¾né prida» záznam pôvodne na %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
index 1418f82..35dab24 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.33 2000/04/27 01:11:49 jbj Exp $
+# $Id: sl.po,v 1.34 2000/04/27 12:50:56 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 2000-02-17 22:25+01:00\n"
 "Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -2346,86 +2346,86 @@ msgstr "vrednost %%instchangelog v makrodatoteki bi morala biti 
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "razpakiranje arhiva neuspe¹no%s%s: %s"
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr " pri datoteki "
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr "name¹èanje izvornega paketa\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "ni mo¾no ustvariti izvornega imenika %s"
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr "ni mo¾no pisanje na %s"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr "izvori v: %s\n"
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "ni mo¾no ustvariti imenika z doloèili spec %s"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "datoteka spec v: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s v %s neuspe¹no: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr "prièakovan izvorni paket, najden binarni"
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr "ustavljamo namestitev ker teèemo kot --test\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "opozorilo: %s ustvarjen kot %s"
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n"
 
@@ -2887,12 +2887,12 @@ msgstr ")"
 msgid "OK"
 msgstr "V REDU"
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2900,157 +2900,157 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "napaka pri branju zapisa %s iz %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "napaka pri pisanju zapisa %s v %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "napaka pri brisanju zapisa %s iz %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "dbpath ni nastavljena"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb"
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "paketa ni mo¾no odpreti: %s\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "ni mo¾no prebrati glave pri %d za vpogled"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "paketa %s ni najti v %s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "paketa %s ni najti v %s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstranjujemo vnose v podatkovni zbirki\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "odstranjujemo seznam imen\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "ni mo¾no zagotoviti prostora za podatkovno zbirko"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "ustvarjamo imenik: %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "napaka pri ustvarjanju imenika %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "odpiramo staro podatkovno zbirko\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "odpiramo novo podatkovno zbirko\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo."
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "zapisa ni mo¾no dodati na %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 "ponovna izgradnja podatkovne zbirke neuspe¹na; stara ostaja na istem mestu\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "posku¹amo povrniti z nadomestitvijo datotek v %s z datotekami iz %s"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspe¹na odstranitev imenika %s: %s\n"
index c07211e..51c333c 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 "From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@@ -2391,88 +2391,88 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instaliraj paket"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s u %s nije uspelo: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2950,12 +2950,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2963,156 +2963,156 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "paket %s nije naðen u %s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "paket %s nije naðen u %s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "ne mogu da zauzmem prostor za bazu podataka"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "ne mogu da dodam slog originalno na %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
index 7f4c94e..e74ebad 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,12 +1,12 @@
 # Swedish messages for RPM
 # Copyright © 1999 Free Software Foundation, Inc.
 # Göran Uddeborg <göran@uddeborg.pp.se>, 1999, 2000.
-# $Revision: 1.93 $
+# $Revision: 1.94 $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: 2000-02-21 12:20+0100\n"
 "Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -2336,86 +2336,86 @@ msgstr "%%instchangelog-v
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "uppackning av arkiv misslyckades%s%s: %s"
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/install.c:420
+#: lib/install.c:409
 msgid "installing a source package\n"
 msgstr "installerar källpaket\n"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "kan inte skapa källkatalog %s"
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, c-format
 msgid "cannot write to %s"
 msgstr "kan inte skriva till %s"
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr "källkod i: %s\n"
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "kan inte skapa spec-katalog %s"
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-fil i: %s\n"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 msgid "source package contains no .spec file"
 msgstr "källpaket innehåller ingen spec-fil"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "byter namn på %s till %s\n"
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "namnbyte från %s till %s misslyckades: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr "källpaket förväntades, fann binärpaket"
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s filtest = %d\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr "avbryter installation eftersom vi kör --test\n"
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr "kör (eventuellt) preinstalltionsskript\n"
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varning: %s skapades som %s"
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varning: %s sparades som %s"
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr "kör (eventuellt) postinstallationsskript\n"
 
@@ -2879,12 +2879,12 @@ msgstr ")"
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2892,31 +2892,31 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "fel när post %s hämtades från %s"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "fel när post %s sparades i %s"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "fel när post %s togs bort ur %s"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "ingen dbpath har satts"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2925,125 +2925,125 @@ msgstr ""
 "i nytt format"
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "kan inte öppna paket: %s\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "kan inte läsa huvud vid %d för uppslagning"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "fann ej paket %s i %s"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "fann ej paket %s i %s"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "tar bort databasposter\n"
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "tar bort gruppindex\n"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "tar bort namnindex\n"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "kan inte allokera plats för databas"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "byter namn på %s till %s\n"
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "bygger om databas %s till %s\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "tillfällig databas %s existerar redan"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "skapar katalog: %s\n"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "fel när katalog skapades %s: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "öppnar gammal databas\n"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "öppnar ny databas\n"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "post nummer %d i databasen är felaktig -- hoppar över den"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "kan inte lägga till post ursprungligen vid %d"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "kunde inte bygga om databasen; orginaldatabasen finns kvar\n"
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr "kunde inte ersätta gammal databas med ny databas!\n"
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "byt ut filer i %s med filer från %s för att återställa"
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunde inte ta bort katalogen %s: %s\n"
index 243a7e6..53fb16f 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-04-26 21:07-0400\n"
+"POT-Creation-Date: 2000-04-27 08:36-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2429,88 +2429,88 @@ msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: lib/install.c:375
+#: lib/install.c:364
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:376
+#: lib/install.c:365
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:420
+#: lib/install.c:409
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "paket yüklemek"
 
-#: lib/install.c:440
+#: lib/install.c:429
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:446 lib/install.c:476
+#: lib/install.c:435 lib/install.c:465
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:450
+#: lib/install.c:439
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:470
+#: lib/install.c:459
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:480
+#: lib/install.c:469
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/install.c:514 lib/install.c:542
+#: lib/install.c:503 lib/install.c:531
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: lib/install.c:564
+#: lib/install.c:553
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28
+#: lib/install.c:555 lib/install.c:829 lib/uninstall.c:28
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s 'nin isminin  %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
 
-#: lib/install.c:657
+#: lib/install.c:646
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:712
+#: lib/install.c:701
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: lib/install.c:770
+#: lib/install.c:759
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:775
+#: lib/install.c:764
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:800
+#: lib/install.c:789
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:836
+#: lib/install.c:825
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:910
+#: lib/install.c:899
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2990,12 +2990,12 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:89
+#: lib/rpmdb.c:92
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:207
+#: lib/rpmdb.c:210
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -3003,157 +3003,157 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:222
+#: lib/rpmdb.c:225
 #, fuzzy, c-format
 msgid "dbiOpen: cannot open %s index"
 msgstr "hata: %s eriþilemiyor\n"
 
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "error getting \"%s\" records from %s index"
 msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
 
-#: lib/rpmdb.c:393
+#: lib/rpmdb.c:396
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "%s kaydý %s dosyasýna yazýlamýyor"
 
-#: lib/rpmdb.c:402
+#: lib/rpmdb.c:405
 #, fuzzy, c-format
 msgid "error removing record %s from %s"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:586 lib/rpmdb.c:1932
+#: lib/rpmdb.c:591 lib/rpmdb.c:1979
 msgid "no dbpath has been set"
 msgstr "dbpath deðeri girilmemiþ"
 
-#: lib/rpmdb.c:664
+#: lib/rpmdb.c:669
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:857
+#: lib/rpmdb.c:860
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
 
-#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90
+#: lib/rpmdb.c:926 lib/rpmdb.c:1395 lib/uninstall.c:90
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
 
-#: lib/rpmdb.c:1330
+#: lib/rpmdb.c:1350
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: lib/rpmdb.c:1338
+#: lib/rpmdb.c:1358
 #, fuzzy, c-format
 msgid "key \"%s\" not removed from %s"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: lib/rpmdb.c:1408
+#: lib/rpmdb.c:1429
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1415
+#: lib/rpmdb.c:1436
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:1423
+#: lib/rpmdb.c:1444
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:1427
+#: lib/rpmdb.c:1448
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
 # reservieren???
-#: lib/rpmdb.c:1574
+#: lib/rpmdb.c:1624
 #, fuzzy
 msgid "cannot allocate new instance in database"
 msgstr "Veritabaný için yer bulunamadý"
 
-#: lib/rpmdb.c:1623
+#: lib/rpmdb.c:1671
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1636
+#: lib/rpmdb.c:1684
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1643
+#: lib/rpmdb.c:1691
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:1647
+#: lib/rpmdb.c:1695
 #, c-format
 msgid "%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:1957
+#: lib/rpmdb.c:2004
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:2008
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "geçici veritabaný %s mevcut"
 
-#: lib/rpmdb.c:1967
+#: lib/rpmdb.c:2014
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/rpmdb.c:1969
+#: lib/rpmdb.c:2016
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/rpmdb.c:1976
+#: lib/rpmdb.c:2023
 #, fuzzy, c-format
 msgid "opening old database with dbi_major %d\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:1985
+#: lib/rpmdb.c:2032
 #, fuzzy, c-format
 msgid "opening new database with dbi_major %d\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:2007
+#: lib/rpmdb.c:2054
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
 
-#: lib/rpmdb.c:2039
+#: lib/rpmdb.c:2086
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "%d de yer alan kayýt saklayamýyor"
 
-#: lib/rpmdb.c:2057
+#: lib/rpmdb.c:2104
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2065
+#: lib/rpmdb.c:2112
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2067
+#: lib/rpmdb.c:2114
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2073
+#: lib/rpmdb.c:2120
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s açýlamadý: %s"
index 1c5cbab..3d5d9b2 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -2,7 +2,7 @@ Summary: The Red Hat package management system.
 Name: rpm
 %define version 3.1
 Version: %{version}
-Release: 0.11
+Release: 0.12
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/rpm-%{version}.tar.gz
 Copyright: GPL
@@ -219,6 +219,12 @@ fi
 /usr/include/popt.h
 
 %changelog
+* Thu Apr 27 2000 Jeff Johnson <jbj@redhat.com>
+- API: replace rpmdbUpdateRecord with rpmdbSetIteratorModified.
+- API: replace rpmdbFindByLabel with RPMDBI_LABEL iteration.
+- API: replace rpmdbGetRecord with iterators.
+- API: replace findMatches with iterators.
+
 * Tue Apr 25 2000 Jeff Johnson <jbj@redhat.com>
 - rebuild to check autoconf configuration in dist-7.0.