- treat legacy falloc.c as "special" db[01] index for package headers.
authorjbj <devnull@localhost>
Tue, 11 Apr 2000 16:15:54 +0000 (16:15 +0000)
committerjbj <devnull@localhost>
Tue, 11 Apr 2000 16:15:54 +0000 (16:15 +0000)
CVS patchset: 3667
CVS date: 2000/04/11 16:15:54

19 files changed:
CHANGES
lib/Makefile.am
lib/falloc.c
lib/rpmdb.c
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 ec941b9..40ac4db 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -11,6 +11,7 @@
        - use hashed access for package headers.
        - solaris2.6: avoid bsearch with empty dir list (Ric Klaren - klaren@cs.utwente.nl)
        - db3: save join keys in endian neutral binary format.
+       - treat legacy falloc.c as "special" db[01] index for package headers.
 
 3.0.3 -> 3.0.4
        - use compressed filenames on install side.
index 2bdecaf..ac74229 100644 (file)
@@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.4 foreign
 
 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/build -I$(top_srcdir)/popt @INCPATH@
 
-EXTRA_DIST = db0.c db1.c db2.c db3.c
+EXTRA_DIST = falloc.c db0.c db1.c db2.c db3.c
 
 pkgincdir = $(pkgincludedir)
 pkginc_HEADERS = \
@@ -19,7 +19,7 @@ mylibs=       -lrpm -lpopt @INTLLIBS@ @LIBMISC@
 
 lib_LTLIBRARIES = librpm.la
 librpm_la_SOURCES = \
-       cpio.c $(DBLIBOBJS) dbindex.c depends.c falloc.c \
+       cpio.c $(DBLIBOBJS) dbindex.c depends.c \
        formats.c fprint.c fs.c hash.c header.c install.c \
        lookup.c macro.c md5.c md5sum.c \
        messages.c misc.c oldheader.c package.c problems.c query.c \
@@ -29,6 +29,9 @@ librpm_la_SOURCES = \
 librpm_la_LIBADD = $(subst .c,.lo,$(DBLIBOBJS))
 #librpm_la_LIBADD = -lpopt
 
+falloc.lo: falloc.c $(top_srcdir)/system.h rpmio.h falloc.h
+       $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
 db3.lo: db3.c $(top_srcdir)/system.h rpmlib.h dbindex.h
        $(LIBTOOL) --mode=compile $(COMPILE) -c $<
        for F in $*.o $*.lo ; do \
@@ -51,25 +54,25 @@ db2.lo: db2.c $(top_srcdir)/system.h rpmlib.h dbindex.h
            rm -f $${F}.o ; \
        done
 
-db1.lo: db1.c $(top_srcdir)/system.h rpmlib.h dbindex.h
+db1.lo: db1.c falloc.lo $(top_srcdir)/system.h rpmlib.h dbindex.h
        $(LIBTOOL) --mode=compile $(COMPILE) -c $<
        for F in $*.o $*.lo ; do \
-           @__LD@ -r -o $${F}.o $${F} -L/usr/lib -ldb ; \
+           @__LD@ -r -o $${F}.o $${F} falloc.lo -L/usr/lib -ldb ; \
            @__OBJCOPY@ `\
                @__NM@ -g --defined-only $${F}.o | \
                sed -e '/ [DRTW] /!d' -e 's/.* [DRTW] /-L /' | \
-               grep -v '^-L $*'` $${F}.o $${F} ; \
+               grep -v '^-L $*' | grep -v '^-L fadio'` $${F}.o $${F} ; \
            rm -f $${F}.o ; \
        done
 
-db0.lo: db0.c $(top_srcdir)/system.h rpmlib.h dbindex.h
+db0.lo: db0.c falloc.lo $(top_srcdir)/system.h rpmlib.h dbindex.h
        $(LIBTOOL) --mode=compile $(COMPILE) -c $<
        for F in $*.o $*.lo ; do \
-           @__LD@ -r -o $${F}.o $${F} -L/usr/lib -ldb1 ; \
+           @__LD@ -r -o $${F}.o $${F} falloc.lo -L/usr/lib -ldb1 ; \
            @__OBJCOPY@ `\
                @__NM@ -g --defined-only $${F}.o | \
                sed -e '/ [DRTW] /!d' -e 's/.* [DRTW] /-L /' | \
-               grep -v '^-L $*'` $${F}.o $${F} ; \
+               grep -v '^-L $*' | grep -v '^-L fadio'` $${F}.o $${F} ; \
            rm -f $${F}.o ; \
        done
 
index 9062092..c6a5d53 100644 (file)
@@ -34,7 +34,15 @@ struct faFooter {
     unsigned int isFree; 
 } ;
 
-/* flags here is the same as for open(2) - NULL returned on error */
+/* =============================================================== */
+static struct FDIO_s fadio_s = {
+  NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+  fadOpen, NULL, NULL, NULL, NULL, NULL, NULL, NULL
+};
+FDIO_t fadio = /*@-compmempass@*/ &fadio_s /*@=compmempass@*/ ;
+/* =============================================================== */
+
+/* flags are the same as for open(2) - NULL returned on error */
 FD_t fadOpen(const char * path, int flags, int perms)
 {
     struct faFileHeader newHdr;
@@ -48,6 +56,9 @@ FD_t fadOpen(const char * path, int flags, int perms)
        /* XXX Fstrerror */
        return NULL;
 
+    memcpy(fadio, fdio, sizeof(*fadio));
+    fadio->_open = fadOpen;
+
     fdSetIo(fd, fadio);
     fadSetFirstFree(fd, 0);
     fadSetFileSize(fd, Fseek(fd, 0, SEEK_END));
index b555297..28f2af0 100644 (file)
@@ -74,9 +74,6 @@ struct _dbiIndex rpmdbi[] = {
    right area w/o a linear search through the database. */
 
 struct rpmdb_s {
-#ifdef DYING
-    FD_t pkgs;
-#endif
     dbiIndex _dbi[RPMDBI_MAX];
 #ifdef DYING
 #define        nameIndex               _dbi[RPMDBI_NAME]
@@ -167,78 +164,6 @@ int openDatabase(const char * prefix, const char * dbpath, rpmdb *dbp,
 
     db = newRpmdb();
 
-#ifdef DYING
-{   int _use_falloc = rpmExpandNumeric("%{_db3_use_falloc}");
-    char * filename;
-    int i;
-
-    i = strlen(dbpath);
-    if (dbpath[i - 1] != '/') {
-       filename = alloca(i + 2);
-       strcpy(filename, dbpath);
-       filename[i] = '/';
-       filename[i + 1] = '\0';
-       dbpath = filename;
-    }
-    
-    filename = alloca(strlen(prefix) + strlen(dbpath) + 40);
-    *filename = '\0';
-
-    switch (urlIsURL(dbpath)) {
-    case URL_IS_UNKNOWN:
-       strcat(filename, prefix); 
-       break;
-    default:
-       break;
-    }
-    strcat(filename, dbpath);
-    (void)rpmCleanPath(filename);
-
-    rpmMessage(RPMMESS_DEBUG, _("opening database mode 0x%x in %s\n"),
-       mode, filename);
-
-    if (filename[strlen(filename)-1] != '/')
-       strcat(filename, "/");
-    strcat(filename, "packages.rpm");
-
-  if (_use_falloc || rpmfileexists(filename)) {
-    if (!justcheck || !rpmfileexists(filename)) {
-       struct flock lockinfo;
-       db->pkgs = fadOpen(filename, mode, perms);
-       if (Ferror(db->pkgs)) {
-           rpmError(RPMERR_DBOPEN, _("failed to open %s: %s\n"), filename,
-               Fstrerror(db->pkgs));
-           return 1;
-       }
-
-       /* try and get a lock - this is released by the kernel when we close
-          the file */
-       lockinfo.l_whence = 0;
-       lockinfo.l_start = 0;
-       lockinfo.l_len = 0;
-       
-       if (mode & O_RDWR) {
-           lockinfo.l_type = F_WRLCK;
-           if (Fcntl(db->pkgs, F_SETLK, (void *) &lockinfo)) {
-               rpmError(RPMERR_FLOCK, _("cannot get %s lock on database"), 
-                        _("exclusive"));
-               rpmdbClose(db);
-               return 1;
-           } 
-       } else {
-           lockinfo.l_type = F_RDLCK;
-           if (Fcntl(db->pkgs, F_SETLK, (void *) &lockinfo)) {
-               rpmError(RPMERR_FLOCK, _("cannot get %s lock on database"), 
-                        _("shared"));
-               rpmdbClose(db);
-               return 1;
-           } 
-       }
-    }
-  }
-}
-#endif
-
     {  int dbix;
 
        rc = 0;
@@ -249,9 +174,6 @@ int openDatabase(const char * prefix, const char * dbpath, rpmdb *dbp,
 
            rc = openDbFile(prefix, dbpath, dbiTemplate, justcheck, mode,
                        &db->_dbi[dbix]);
-#ifdef DYING
-           if (dbix == 0) rc = 0;      /* XXX HACK for non-db3 */
-#endif
            if (rc)
                continue;
 
@@ -338,138 +260,53 @@ void rpmdbClose (rpmdb db)
        dbiCloseIndex(db->_dbi[dbix]);
        db->_dbi[dbix] = NULL;
     }
-#ifdef DYING
-    if (db->pkgs != NULL) Fclose(db->pkgs);
-#endif
     free(db);
 }
 
 int rpmdbFirstRecNum(rpmdb db) {
-#ifdef DYING
-    if (db->pkgs == NULL) {
-#endif
-       dbiIndex dbi = db->_dbi[RPMDBI_PACKAGES];
-       unsigned int offset = 0;
-       void * keyp = &offset;
-       size_t keylen = sizeof(offset);
-       int rc;
-
-       /* XXX skip over instance 0 */
-       do {
-           rc = (*dbi->dbi_vec->cget) (dbi, &keyp, &keylen, NULL, NULL);
-           if (rc)
-               return 0;
-           memcpy(&offset, keyp, sizeof(offset));
-       } while (offset == 0);
-       return offset;
-#ifdef DYING
-    }
-
-    return fadFirstOffset(db->pkgs);
-#endif
-}
-
-int rpmdbNextRecNum(rpmdb db, unsigned int lastOffset) {
-    /* 0 at end */
-#ifdef DYING
-    if (db->pkgs == NULL) {
-#endif
-       dbiIndex dbi = db->_dbi[RPMDBI_PACKAGES];
-       void * keyp = &lastOffset;
-       size_t keylen = sizeof(lastOffset);
-       int rc;
+    dbiIndex dbi = db->_dbi[RPMDBI_PACKAGES];
+    unsigned int offset = 0;
+    void * keyp = &offset;
+    size_t keylen = sizeof(offset);
+    int rc;
 
+    /* XXX skip over instance 0 */
+    do {
        rc = (*dbi->dbi_vec->cget) (dbi, &keyp, &keylen, NULL, NULL);
        if (rc)
            return 0;
-       memcpy(&lastOffset, keyp, sizeof(lastOffset));
-       return lastOffset;
-#ifdef DYING
-    }
-
-    return fadNextOffset(db->pkgs, lastOffset);
-#endif
+       memcpy(&offset, keyp, sizeof(offset));
+    } while (offset == 0);
+    return offset;
 }
 
-#ifdef DYING
-static Header doGetRecord(rpmdb db, unsigned int offset, int pristine)
-{
-    Header h;
-    const char ** fileNames;
-    int fileCount = 0;
-    int i;
-
-    (void)Fseek(db->pkgs, offset, SEEK_SET);
-
-    h = headerRead(db->pkgs, HEADER_MAGIC_NO);
-
-    if (pristine || h == NULL) return h;
-
-    /* the RPM used to build much of RH 5.1 could produce packages whose
-       file lists did not have leading /'s. Now is a good time to fix
-       that */
-
-    /* If this tag isn't present, either no files are in the package or
-       we're dealing with a package that has just the compressed file name
-       list */
-    if (!headerGetEntryMinMemory(h, RPMTAG_OLDFILENAMES, NULL, 
-                          (void **) &fileNames, &fileCount)) return h;
-
-    for (i = 0; i < fileCount; i++) 
-       if (*fileNames[i] != '/') break;
-
-    if (i == fileCount) {
-       free(fileNames);
-    } else {   /* bad header -- let's clean it up */
-       const char ** newFileNames = alloca(sizeof(*newFileNames) * fileCount);
-       for (i = 0; i < fileCount; i++) {
-           char * newFileName = alloca(strlen(fileNames[i]) + 2);
-           if (*fileNames[i] != '/') {
-               newFileName[0] = '/';
-               newFileName[1] = '\0';
-           } else
-               newFileName[0] = '\0';
-           strcat(newFileName, fileNames[i]);
-           newFileNames[i] = newFileName;
-       }
-
-       free(fileNames);
-
-       headerModifyEntry(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE, 
-                         newFileNames, fileCount);
-    }
-
-    /* The file list was moved to a more compressed format which not
-       only saves memory (nice), but gives fingerprinting a nice, fat
-       speed boost (very nice). Go ahead and convert old headers to
-       the new style (this is a noop for new headers) */
-    compressFilelist(h);
+int rpmdbNextRecNum(rpmdb db, unsigned int lastOffset) {
+    /* 0 at end */
+    dbiIndex dbi = db->_dbi[RPMDBI_PACKAGES];
+    void * keyp = &lastOffset;
+    size_t keylen = sizeof(lastOffset);
+    int rc;
 
-    return h;
+    rc = (*dbi->dbi_vec->cget) (dbi, &keyp, &keylen, NULL, NULL);
+    if (rc)
+       return 0;
+    memcpy(&lastOffset, keyp, sizeof(lastOffset));
+    return lastOffset;
 }
-#endif
 
 Header rpmdbGetRecord(rpmdb db, unsigned int offset)
 {
-#ifdef DYING
-    if (db->pkgs == NULL) {
-#endif
-       dbiIndex dbi = db->_dbi[RPMDBI_PACKAGES];
-       void * uh;
-       size_t uhlen;
-       void * keyp = &offset;
-       size_t keylen = sizeof(offset);
-       int rc;
-
-       rc = (*dbi->dbi_vec->get) (dbi, keyp, keylen, &uh, &uhlen);
-       if (rc)
-           return NULL;
-       return headerLoad(uh);
-#ifdef DYING
-    }
+    dbiIndex dbi = db->_dbi[RPMDBI_PACKAGES];
+    void * uh;
+    size_t uhlen;
+    void * keyp = &offset;
+    size_t keylen = sizeof(offset);
+    int rc;
 
-    return doGetRecord(db, offset, 0);
-#endif
+    rc = (*dbi->dbi_vec->get) (dbi, keyp, keylen, &uh, &uhlen);
+    if (rc)
+       return NULL;
+    return headerLoad(uh);
 }
 
 int rpmdbFindByFile(rpmdb db, const char * filespec, dbiIndexSet * matches)
@@ -747,10 +584,6 @@ int rpmdbRemove(rpmdb db, unsigned int offset, int tolerant)
        dbiFreeIndexRecordInstance(rec);
     }
 
-#ifdef DYING
-    fadFree(db->pkgs, offset);
-#endif
-
     unblockSignals();
 
     headerFree(h);
@@ -814,9 +647,6 @@ int rpmdbAdd(rpmdb db, Header h)
 
     blockSignals();
 
-#ifdef DYING
-    if (db->pkgs == NULL)
-#endif
     {
        unsigned int firstkey = 0;
        void * keyp = &firstkey;
@@ -846,22 +676,6 @@ int rpmdbAdd(rpmdb db, Header h)
        }
        rc = (*dbi->dbi_vec->put) (dbi, keyp, keylen, datap, datalen);
     }
-#ifdef DYING
-    else {
-       int newSize;
-       newSize = headerSizeof(h, HEADER_MAGIC_NO);
-       offset = fadAlloc(db->pkgs, newSize);
-       if (offset == 0) {
-           rc = 1;
-       } else {
-           (void)Fseek(db->pkgs, offset, SEEK_SET);
-           fdSetContentLength(db->pkgs, newSize);
-           rc = headerWrite(db->pkgs, h, HEADER_MAGIC_NO);
-           fdSetContentLength(db->pkgs, -1);
-       }
-
-    }
-#endif
 
     if (rc) {
        rpmError(RPMERR_DBCORRUPT, _("cannot allocate new instance in database"));
@@ -976,46 +790,11 @@ int rpmdbUpdateRecord(rpmdb db, int offset, Header newHeader)
 {
     int rc = 0;
 
-#ifdef DYING
-    Header oldHeader;
-    int oldSize, newSize;
-
-    oldHeader = doGetRecord(db, offset, 1);
-    if (oldHeader == NULL) {
-       rpmError(RPMERR_DBCORRUPT, _("cannot read header at %d for update"),
-               offset);
+    if (rpmdbRemove(db, offset, 1))
        return 1;
-    }
-
-    oldSize = headerSizeof(oldHeader, HEADER_MAGIC_NO);
-    headerFree(oldHeader);
 
-    if (_noDirTokens)
-       expandFilelist(newHeader);
-
-    newSize = headerSizeof(newHeader, HEADER_MAGIC_NO);
-    if (oldSize != newSize) {
-       rpmMessage(RPMMESS_DEBUG, _("header changed size!"));
-#endif
-
-       if (rpmdbRemove(db, offset, 1))
-           return 1;
-
-       if (rpmdbAdd(db, newHeader)) 
-           return 1;
-
-#ifdef DYING
-    } else {
-       blockSignals();
-
-       (void)Fseek(db->pkgs, offset, SEEK_SET);
-       fdSetContentLength(db->pkgs, newSize);
-       rc = headerWrite(db->pkgs, newHeader, HEADER_MAGIC_NO);
-       fdSetContentLength(db->pkgs, -1);
-
-       unblockSignals();
-    }
-#endif
+    if (rpmdbAdd(db, newHeader)) 
+       return 1;
 
     return rc;
 }
index 2c2cacc..46920e1 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-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2096,12 +2096,12 @@ msgstr "intern
 msgid " failed - "
 msgstr "chyba pgp"
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "nelze provést statistiku %s: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2109,22 +2109,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "chyba pøi získávání záznamu %s z %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "chyba pøi ukládání záznamu %s do %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "chyba pøi odstraòování záznamu %s do %s"
@@ -2213,7 +2213,7 @@ msgstr "nelze 
 msgid "loop in prerequisite chain: %s"
 msgstr "smyèka v øetìzu podmínek: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2328,7 +2328,7 @@ msgstr "na konci v
 msgid "(unknown type)"
 msgstr "(neznámý typ)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "soubor %s: %s\n"
@@ -2398,7 +2398,7 @@ msgstr "bal
 msgid "renaming %s to %s\n"
 msgstr "Probíhá získávání %s jako %s\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s nelze pøejmenovat na %s: %s"
@@ -2412,27 +2412,27 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 #, 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:789
+#: lib/install.c:769
 #, fuzzy
 msgid "running preinstall script (if any)\n"
 msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
@@ -2844,7 +2844,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "zobrazit seznam souborù balíèkù"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "nebyla nastavena dbpath"
 
@@ -2907,8 +2907,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "starou databázi nelze nahradit novou databází!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, 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/rebuilddb.c:169
@@ -3001,104 +3001,73 @@ msgstr ""
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "probíhá otevírání databázového re¾imu: 0%o\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "nelze otevøít %s: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "nelze získat %s zámek k databázi"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "výhradní"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "sdílený"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "chyba: nelze otevøít %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "balíèek %s nenalezen v %s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "balíèek %s nenalezen v %s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "nelze èíst hlavièku u %d pro vyhledání"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstraòuje se polo¾ka databáze\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje se rejstøík skupin\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "odstraòuje se rejstøík názvù\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "nelze alokovat prostor pro databázi"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "Probíhá získávání %s jako %s\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "nelze èíst hlavièku u %d pro inovaci"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "hlavièka zmìnila velikost!"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "probíhá poèítání balíèkù pro instalaci\n"
@@ -3531,45 +3500,40 @@ msgstr "Prob
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "%s nelze odstranit - adresáø není prázdný"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "neúspìch rmdir %s: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s nelze odstranit: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "nelze èíst hlavièku u %d pro deinstalaci"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "nelze èíst balíèky nazvané %d pro deinstalaci"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "odstraní se soubory test = %d\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "odstraòuje se polo¾ka databáze\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "skript nelze spustit"
 
@@ -3603,6 +3567,11 @@ msgstr "chyba: ftpport mus
 msgid "url port must be a number\n"
 msgstr "chyba: ftpport musí být èíslo\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "nelze otevøít %s: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3637,6 +3606,28 @@ msgstr "Nevy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Chybné otevøení\n"
 
+#, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "probíhá otevírání databázového re¾imu: 0%o\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "nelze získat %s zámek k databázi"
+
+#~ msgid "exclusive"
+#~ msgstr "výhradní"
+
+#~ msgid "shared"
+#~ msgstr "sdílený"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "nelze èíst hlavièku u %d pro inovaci"
+
+#~ msgid "header changed size!"
+#~ msgstr "hlavièka zmìnila velikost!"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "nelze èíst balíèky nazvané %d pro deinstalaci"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "balíèek %s není uveden v %s"
 
index 0955a0a..6afd476 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-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2198,12 +2198,12 @@ msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2211,23 +2211,23 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
@@ -2316,7 +2316,7 @@ msgstr "kann Kopfzeilen bei %d nicht lesen, um Abh
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2437,7 +2437,7 @@ msgid "(unknown type)"
 msgstr "(unbekannter Typ)"
 
 # , c-format
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -2508,7 +2508,7 @@ msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
@@ -2523,25 +2523,25 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2960,7 +2960,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "Dateiliste des Pakets anzeigen"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
@@ -3026,7 +3026,7 @@ msgstr ""
 
 #: lib/rebuilddb.c:163
 #, c-format
-msgid "replaces files in %s with files from %s to recover"
+msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 # , c-format
@@ -3120,108 +3120,76 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "Datenbank aus der vorhandenen neu erstellen"
-
-# , c-format
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "Öffnen von %s fehlgeschlagen: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "kann %s lock für die Datenbank nicht bekommen"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "exklusiv"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "geteilt"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
 # FIXME
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
 # reservieren???
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "kann keinen Platz für die Datenbank bekommen"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "kann Kopfzeilen bei %d nicht lesen, um Update durchzuführen"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 #, fuzzy
 msgid "counting packages to install\n"
@@ -3667,45 +3635,40 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "öffnen von %s fehlgeschlagen: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen"
 
-#: lib/uninstall.c:106
-#, fuzzy, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr ""
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
@@ -3740,6 +3703,12 @@ msgid "url port must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
 # , c-format
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "Öffnen von %s fehlgeschlagen: %s"
+
+# , c-format
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3774,6 +3743,26 @@ msgstr "Nicht erf
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
+#, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "Datenbank aus der vorhandenen neu erstellen"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "kann %s lock für die Datenbank nicht bekommen"
+
+#~ msgid "exclusive"
+#~ msgstr "exklusiv"
+
+#~ msgid "shared"
+#~ msgstr "geteilt"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "kann Kopfzeilen bei %d nicht lesen, um Update durchzuführen"
+
+#, fuzzy
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "Paket %s wird nicht in %s aufgeführt"
 
index aab1b4a..ae5da0f 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-04-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -2134,12 +2134,12 @@ msgstr "vakava virhe: "
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "en voinut avata %s: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2147,22 +2147,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
@@ -2251,7 +2251,7 @@ msgstr "en voi lukea headeria %d:ss
 msgid "loop in prerequisite chain: %s"
 msgstr "silmukka edellytysten ketjussa: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2368,7 +2368,7 @@ msgstr "odotin '}'-merkki
 msgid "(unknown type)"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "en voinut avata %s: %s"
@@ -2438,7 +2438,7 @@ msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
@@ -2452,25 +2452,25 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2882,7 +2882,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "näytä paketin tiedostolistaus"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
@@ -2946,7 +2946,7 @@ msgstr ""
 
 #: lib/rebuilddb.c:163
 #, c-format
-msgid "replaces files in %s with files from %s to recover"
+msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 #: lib/rebuilddb.c:169
@@ -3039,104 +3039,73 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "en voinut avata %s: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "en voi saada %s lukitusta tietokantaan"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "poissulkevaa"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "jaettua"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "en voi varata tilaa tietokannalle"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "en voi lukea headeria %d:stä päivittäessä"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 #, fuzzy
 msgid "counting packages to install\n"
@@ -3576,45 +3545,40 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s:n poisto epäonnistui: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "en voi lukea headeria %d:stä poistamiseen"
 
-#: lib/uninstall.c:106
-#, fuzzy, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "en voi lukea headeria %d:stä poistamiseen"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr ""
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "skriptin ajo epäonnistui"
 
@@ -3648,6 +3612,11 @@ msgstr "virhe: ftpport pit
 msgid "url port must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "en voinut avata %s: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3682,6 +3651,26 @@ msgstr "%s-%s-%s:n tyydytt
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
+#, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "en voi saada %s lukitusta tietokantaan"
+
+#~ msgid "exclusive"
+#~ msgstr "poissulkevaa"
+
+#~ msgid "shared"
+#~ msgstr "jaettua"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "en voi lukea headeria %d:stä päivittäessä"
+
+#, fuzzy
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "en voi lukea headeria %d:stä poistamiseen"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "paketti %s ei ole %s:ssä"
 
index fdd3f88..3fd9f1a 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
 msgid ""
-msgstr "POT-Creation-Date: 2000-04-07 11:56-0400\n"
+msgstr "POT-Creation-Date: 2000-04-11 12:21-0400\n"
 
 #: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425
 #, c-format
@@ -2135,12 +2135,12 @@ msgstr ""
 msgid " failed - "
 msgstr "La construction a échoué.\n"
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2148,22 +2148,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr ""
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr ""
@@ -2252,7 +2252,7 @@ msgstr ""
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2369,7 +2369,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
@@ -2439,7 +2439,7 @@ msgstr ""
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
@@ -2453,25 +2453,25 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2886,7 +2886,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "        -l                - affiche la liste des packages"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr ""
 
@@ -2950,7 +2950,7 @@ msgstr ""
 
 #: lib/rebuilddb.c:163
 #, c-format
-msgid "replaces files in %s with files from %s to recover"
+msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 #: lib/rebuilddb.c:169
@@ -3042,104 +3042,72 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr ""
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr ""
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr ""
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr ""
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, 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:610
+#: lib/rpmdb.c:503
 #, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+msgid "cannot allocate new instance in database"
 msgstr ""
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr ""
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 #, fuzzy
 msgid "counting packages to install\n"
@@ -3563,45 +3531,40 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, fuzzy, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/uninstall.c:106
-#, fuzzy, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "aucun package n'a été spécifié pour la désinstallation"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr ""
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr ""
 
@@ -3634,6 +3597,11 @@ msgstr ""
 msgid "url port must be a number\n"
 msgstr ""
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3667,6 +3635,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "aucun package n'a été spécifié pour la désinstallation"
+
+#, fuzzy
 #~ msgid "package has no group\n"
 #~ msgstr "aucun package n'a été spécifié pour la désinstallation"
 
index 04ca734..5538352 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-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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.38 2000/04/07 16:09:26 jbj Exp $
+# $Id: ja.po,v 1.39 2000/04/11 16:15:54 jbj Exp $
 #: rpm.c:200
 #, c-format
 msgid "rpm: %s\n"
@@ -2102,12 +2102,12 @@ msgstr "
 msgid " failed - "
 msgstr "¼ºÇÔ - "
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2115,22 +2115,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
@@ -2221,7 +2221,7 @@ msgstr "
 msgid "loop in prerequisite chain: %s"
 msgstr "prerequisite ¥Á¥§¡¼¥ó¤Î¥ë¡¼¥×: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2341,7 +2341,7 @@ msgstr "
 msgid "(unknown type)"
 msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: ¥¢¥¯¥·¥ç¥ó: %s\n"
@@ -2413,7 +2413,7 @@ msgstr "
 msgid "renaming %s to %s\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s"
@@ -2427,25 +2427,25 @@ msgstr "
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:924
+#: lib/install.c:904
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
@@ -2866,7 +2866,7 @@ msgstr "
 msgid "display a verbose file listing"
 msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
@@ -2930,8 +2930,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, fuzzy, c-format
+msgid "replace files in %s with files from %s to recover"
 msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
 
 #: lib/rebuilddb.c:169
@@ -3024,104 +3024,73 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "½ü³°"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "¶¦Í­"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹ÍѤζõ¤­ÍÆÎ̤¬Â­¤ê¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "¥¢¥Ã¥×¥Ç¡¼¥ÈÍѤΠ%d ¤Ç¥Ø¥Ã¥À¤òÆɤá¤Þ¤»¤ó"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "¥Ø¥Ã¥À¤Î¥µ¥¤¥º¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤ò¿ô¤¨¤Æ¤¤¤Þ¤¹\n"
@@ -3559,46 +3528,40 @@ msgstr "
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s ¤Îºï½ü¤Ë¼ºÇÔ: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Ë %d ¤Ç¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr ""
-"¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤¿¤á¤Ë %s ¤È̾ÉÕ¤±¤é¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "¥Õ¥¡¥¤¥ë test = %d ¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
@@ -3632,6 +3595,11 @@ msgstr "
 msgid "url port must be a number\n"
 msgstr "url ¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3670,6 +3638,29 @@ msgstr "%s-%s-%s 
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: rpmdbOen() ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
+#, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó"
+
+#~ msgid "exclusive"
+#~ msgstr "½ü³°"
+
+#~ msgid "shared"
+#~ msgstr "¶¦Í­"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "¥¢¥Ã¥×¥Ç¡¼¥ÈÍѤΠ%d ¤Ç¥Ø¥Ã¥À¤òÆɤá¤Þ¤»¤ó"
+
+#~ msgid "header changed size!"
+#~ msgstr "¥Ø¥Ã¥À¤Î¥µ¥¤¥º¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr ""
+#~ "¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤¿¤á¤Ë %s ¤È̾ÉÕ¤±¤é¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¥ê¥¹¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
index abab389..bef7fd1 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-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2055,12 +2055,12 @@ msgstr "B
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2068,22 +2068,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "b³±d usuwania rekordu %s z %s"
@@ -2172,7 +2172,7 @@ msgstr "nie mo
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2287,7 +2287,7 @@ msgstr "spodziewany | na ko
 msgid "(unknown type)"
 msgstr "(nieznany typ)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   plik: %s akcja: %s\n"
@@ -2355,7 +2355,7 @@ msgstr "pakiet 
 msgid "renaming %s to %s\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
@@ -2369,25 +2369,25 @@ msgstr "spodziewany pakiet 
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr "przebieg testowy - instalacja zatrzymana\n"
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ostrze¿enie: %s utworzony jako %s"
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/install.c:924
+#: lib/install.c:904
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
@@ -2787,7 +2787,7 @@ msgstr "wy
 msgid "display a verbose file listing"
 msgstr "wy¶wietl wiêcej informacji o plikach z listy"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
@@ -2850,8 +2850,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, 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/rebuilddb.c:169
@@ -2943,30 +2943,7 @@ msgstr ")"
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:192
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "nie mo¿na otworzyæ %s: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr ""
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr ""
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2975,74 +2952,66 @@ msgstr ""
 "nowym formacie"
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "pakiet %s nie znaleziony w %s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "pakiet %s nie znaleziony w %s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "usuwanie wpisu w bazie\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "usuwanie indeksu grupy\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "usuwanie indeksu nazw\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "nie mo¿na alokowaæ przestrzeni dla bazy danych"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla uaktualnienia"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "nag³ówek zmieni³ swój rozmiar!"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "zliczanie pakietów do zainstalowania\n"
@@ -3461,45 +3430,40 @@ msgstr "przesuwanie %s do %s\n"
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "skasowanie %s nie powiod³o siê: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla deinstalacji"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "nie mo¿na odczytaæ pakietów nazwanych %s dla zdeinstalowania"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "usunie pliki test = %d\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "usuwanie wpisu w bazie\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
@@ -3532,6 +3496,11 @@ msgstr "b
 msgid "url port must be a number\n"
 msgstr "port musi byæ liczb±\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "nie mo¿na otworzyæ %s: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3568,6 +3537,21 @@ msgstr "Niespe
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: rpmdbOpen() nie powiod³o siê\n"
 
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla uaktualnienia"
+
+#~ msgid "header changed size!"
+#~ msgstr "nag³ówek zmieni³ swój rozmiar!"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "nie mo¿na odczytaæ pakietów nazwanych %s dla zdeinstalowania"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "pakiet %s nie jest wymieniony w %s"
 
index a192d06..567b808 100644 (file)
@@ -2,7 +2,7 @@
 # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
 #
 msgid ""
-msgstr "POT-Creation-Date: 2000-04-07 11:56-0400\n"
+msgstr "POT-Creation-Date: 2000-04-11 12:21-0400\n"
 
 #: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425
 #, c-format
@@ -2197,12 +2197,12 @@ msgid " failed - "
 msgstr "Construção falhou.\n"
 
 # , c-format
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2211,22 +2211,22 @@ msgid ""
 msgstr ""
 
 # , c-format
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr ""
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr ""
@@ -2315,7 +2315,7 @@ msgstr ""
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2434,7 +2434,7 @@ msgstr ""
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
@@ -2507,7 +2507,7 @@ msgstr "pesquise o pacote ao qual <arquivo> pertence"
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
@@ -2521,25 +2521,25 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2952,7 +2952,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "mostre a lista de arquivos do pacote"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr ""
 
@@ -3016,7 +3016,7 @@ msgstr ""
 
 #: lib/rebuilddb.c:163
 #, c-format
-msgid "replaces files in %s with files from %s to recover"
+msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 # , c-format
@@ -3113,31 +3113,7 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-
-# , c-format
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "Não consegui abrir: %s\n"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr ""
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr ""
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr ""
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3145,74 +3121,65 @@ msgstr ""
 
 # , c-format
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+msgid "cannot allocate new instance in database"
 msgstr ""
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr ""
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 #, fuzzy
 msgid "counting packages to install\n"
@@ -3671,45 +3638,40 @@ msgstr "N
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, fuzzy, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/uninstall.c:106
-#, fuzzy, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "não foi passado pacote para desinstalação"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr ""
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr ""
 
@@ -3743,6 +3705,12 @@ msgid "url port must be a number\n"
 msgstr ""
 
 # , c-format
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+# , c-format
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3777,6 +3745,14 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
+
+#, fuzzy
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "não foi passado pacote para desinstalação"
+
+#, fuzzy
 #~ msgid "package has no group\n"
 #~ msgstr "não foi passado pacote para desinstalação"
 
index 9967e39..fb8bc79 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-04-11 11:35-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2103,7 +2103,7 @@ msgstr ""
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2713,7 +2713,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr ""
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:305
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr ""
 
@@ -2868,104 +2868,72 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:197
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr ""
-
-#: lib/rpmdb.c:209 lib/url.c:445
-#, c-format
-msgid "failed to open %s: %s\n"
-msgstr ""
-
-#: lib/rpmdb.c:223 lib/rpmdb.c:231
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr ""
-
-#: lib/rpmdb.c:224
-msgid "exclusive"
-msgstr ""
-
-#: lib/rpmdb.c:232
-msgid "shared"
-msgstr ""
-
-#: lib/rpmdb.c:276
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:447
 #, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr ""
 
-#: lib/rpmdb.c:639
+#: lib/rpmdb.c:476
 #, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr ""
 
-#: lib/rpmdb.c:648
+#: lib/rpmdb.c:485
 #, c-format
 msgid "key \"%s\" not found in %s"
 msgstr ""
 
-#: lib/rpmdb.c:667
+#: lib/rpmdb.c:503
 #, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:692
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:698
+#: lib/rpmdb.c:534
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:706
+#: lib/rpmdb.c:542
 #, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:710 lib/rpmdb.c:932
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:681
 msgid "cannot allocate new instance in database"
 msgstr ""
 
-#: lib/rpmdb.c:909
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:921
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:928
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:989
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr ""
-
-#: lib/rpmdb.c:1002
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr ""
@@ -3448,6 +3416,11 @@ msgstr ""
 msgid "url port must be a number\n"
 msgstr ""
 
+#: lib/url.c:445
+#, c-format
+msgid "failed to open %s: %s\n"
+msgstr ""
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, c-format
index df397bd..5d37cf8 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-04-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-0400\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=koi8-r\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2062,12 +2062,12 @@ msgstr "
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "ÎÅ×ÅÒÎÏÅ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÁ: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2075,22 +2075,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
@@ -2179,7 +2179,7 @@ msgstr "
 msgid "loop in prerequisite chain: %s"
 msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2294,7 +2294,7 @@ msgstr "
 msgid "(unknown type)"
 msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n"
@@ -2362,7 +2362,7 @@ msgstr "
 msgid "renaming %s to %s\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
@@ -2376,25 +2376,25 @@ msgstr "
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁΠËÁË %s"
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅΠËÁË %s"
 
-#: lib/install.c:924
+#: lib/install.c:904
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
@@ -2791,7 +2791,7 @@ msgstr "
 msgid "display a verbose file listing"
 msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath"
 
@@ -2854,8 +2854,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, fuzzy, c-format
+msgid "replace files in %s with files from %s to recover"
 msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s"
 
 #: lib/rebuilddb.c:169
@@ -2947,30 +2947,7 @@ msgstr ")"
 msgid "OK"
 msgstr "Ok"
 
-#: lib/rpmdb.c:192
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ %s ÄÏÓÔÕРˠÂÁÚÅ ÄÁÎÎÙÈ"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2979,74 +2956,66 @@ msgstr ""
 "ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ"
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅΠנ%s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅΠנ%s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "ÎÅ ÍÏÇÕ ×ÙÄÅÌÉÔØ ÍÅÓÔÏ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÁÐÇÒÅÊÄÁ"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "ÈÅÄÅÒ ÉÚÍÅÎÉÌ ÒÁÚÍÅÒ!"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "ÓÞÉÔÁÀ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ\n"
@@ -3468,45 +3437,40 @@ msgstr "
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÐÁËÅÔÙ %s ÄÌÑ ÕÄ×ÌÅÎÉÑ"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ"
 
@@ -3539,6 +3503,11 @@ msgstr "
 msgid "url port must be a number\n"
 msgstr "url port ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3571,6 +3540,27 @@ msgstr "
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: ÎÅÕÄÁÞÁ rpmdbOpen()\n"
 
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ %s ÄÏÓÔÕРˠÂÁÚÅ ÄÁÎÎÙÈ"
+
+#~ msgid "exclusive"
+#~ msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
+
+#~ msgid "shared"
+#~ msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÁÐÇÒÅÊÄÁ"
+
+#~ msgid "header changed size!"
+#~ msgstr "ÈÅÄÅÒ ÉÚÍÅÎÉÌ ÒÁÚÍÅÒ!"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÐÁËÅÔÙ %s ÄÌÑ ÕÄ×ÌÅÎÉÑ"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "ÐÁËÅÔ %s ÎÅ ×ÎÅÓÅΠנ%s"
 
index 3b8f7d0..0c69dd8 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-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2065,12 +2065,12 @@ msgstr "Intern
 msgid " failed - "
 msgstr " zlyhalo - "
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "chybný stav súboru: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2078,22 +2078,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
@@ -2182,7 +2182,7 @@ msgstr "nie je mo
 msgid "loop in prerequisite chain: %s"
 msgstr "sluèka v re»azi po¾iadaviek: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2297,7 +2297,7 @@ msgstr "| o
 msgid "(unknown type)"
 msgstr "(neznámy typ)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   súbor: akcia %s: %s\n"
@@ -2365,7 +2365,7 @@ msgstr "zdrojov
 msgid "renaming %s to %s\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "premenovanie %s na %s zlyhalo: %s"
@@ -2379,25 +2379,25 @@ msgstr "o
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varovanie: %s vytvorené ako %s"
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/install.c:924
+#: lib/install.c:904
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
@@ -2795,7 +2795,7 @@ msgstr "zobrazii
 msgid "display a verbose file listing"
 msgstr "zobrazi» podrobný zoznam súborov balíka"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
@@ -2858,8 +2858,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, 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/rebuilddb.c:169
@@ -2951,30 +2951,7 @@ msgstr ")"
 msgid "OK"
 msgstr "V PORIADKU"
 
-#: lib/rpmdb.c:192
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "otvára sa databáza s právami 0x%x v %s\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "nepodarilo sa otvori» %s: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "nie je mo¾né získa» %s zámok pre databázu"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "výhradný"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "zdieµaný"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2983,74 +2960,66 @@ msgstr ""
 "databázy v novom formáte"
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "balík %s nebol nájdený v %s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "balík %s nebol nájdený v %s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstraòuje sa záznam z databázy\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "nie je mo¾né prideli» miesto pre databázu"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "nie je mo¾né preèíta» hlavièku na %d pre úpravu"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "zmenila sa veµkos» hlavièky!"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "poèítajú sa balíky pre in¹taláciu\n"
@@ -3469,45 +3438,40 @@ msgstr "pres
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "odstránenie %s zlyhalo: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre odin¹talovanie"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "nie je mo¾né preèíta» balíky %s pre odin¹talovanie"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "budú sa odstraòova» súbory test = %d\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "odstraòuje sa záznam z databázy\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "vykonanie skriptu zlyhalo"
 
@@ -3540,6 +3504,11 @@ msgstr "chyba: %sport mus
 msgid "url port must be a number\n"
 msgstr "url port musí by» èíslo\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "nepodarilo sa otvori» %s: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3578,6 +3547,27 @@ msgstr "Nevyrie
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmQuery: rpmdbOpen() zlyhalo\n"
 
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "otvára sa databáza s právami 0x%x v %s\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "nie je mo¾né získa» %s zámok pre databázu"
+
+#~ msgid "exclusive"
+#~ msgstr "výhradný"
+
+#~ msgid "shared"
+#~ msgstr "zdieµaný"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "nie je mo¾né preèíta» hlavièku na %d pre úpravu"
+
+#~ msgid "header changed size!"
+#~ msgstr "zmenila sa veµkos» hlavièky!"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "nie je mo¾né preèíta» balíky %s pre odin¹talovanie"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "balík %s nie je uvedený v %s"
 
index 3756b92..b98d09a 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.23 2000/04/07 16:09:27 jbj Exp $
+# $Id: sl.po,v 1.24 2000/04/11 16:15:55 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-04-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2046,12 +2046,12 @@ msgstr "Interna napaka"
 msgid " failed - "
 msgstr " neuspe¹no - "
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "okvarjeno stanje datoteke: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2059,22 +2059,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "ni mo¾no odpreti datoteke %s: %s"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "napaka pri branju zapisa %s iz %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "napaka pri pisanju zapisa %s v %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "napaka pri brisanju zapisa %s iz %s"
@@ -2165,7 +2165,7 @@ msgstr "ni mo
 msgid "loop in prerequisite chain: %s"
 msgstr "zanka v predpogojevani verigi: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2284,7 +2284,7 @@ msgstr "| pri
 msgid "(unknown type)"
 msgstr "(neznan tip)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr " datoteka: %s akcija: %s\n"
@@ -2352,7 +2352,7 @@ msgstr "izvorni paket ne vsebuje datoteke .spec"
 msgid "renaming %s to %s\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s v %s neuspe¹no: %s"
@@ -2366,25 +2366,25 @@ msgstr "pri
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr "ustavljamo namestitev ker teèemo kot --test\n"
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "opozorilo: %s ustvarjen kot %s"
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n"
 
@@ -2781,7 +2781,7 @@ msgstr "izpis stanja seznama datotek"
 msgid "display a verbose file listing"
 msgstr "izpis ob¹irnega seznama datotek"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "dbpath ni nastavljena"
 
@@ -2845,8 +2845,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, 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/rebuilddb.c:169
@@ -2937,104 +2937,73 @@ msgstr ")"
 msgid "OK"
 msgstr "V REDU"
 
-#: lib/rpmdb.c:192
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "odpiramo datoteko z naèinom 0x%x v %s\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, c-format
-msgid "failed to open %s: %s\n"
-msgstr "neuspe¹no odpiranje %s: %s\n"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "datoteke ni mo¾no %s zakleniti"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "izkljuèujoèe"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "deljeno"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 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:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "paketa ni mo¾no odpreti: %s\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "paketa %s ni najti v %s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "paketa %s ni najti v %s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "ni mo¾no prebrati glave pri %d za vpogled"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstranjujemo vnose v podatkovni zbirki\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "odstranjujemo seznam imen\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "ni mo¾no zagotoviti prostora za podatkovno zbirko"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "glave pri %d ni mo¾no prebrati za obnovo"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "velikost glave se je spremenila!"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "¹tetje paketov za namestitev\n"
@@ -3451,45 +3420,40 @@ msgstr "prestavljamo imenik %s v %s\n"
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "odstranitev imenika %s neuspe¹na: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "odstranitev %s neuspe¹na: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "ni mo¾no prebrati glave pri %d za odstranitev"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "paketa %s ni mo¾no prebrati za odnamestitev"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "datoteke bomo odstranili, test = %d\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "poganjamo poodnamestitvene skripte (èe obstajajo)\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "odstranjujemo vnose v podatkovni zbirki\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "skript se ni uspe¹no izvedel"
 
@@ -3522,6 +3486,11 @@ msgstr "napaka: vrata %s morajo biti 
 msgid "url port must be a number\n"
 msgstr "vrata URL morajo biti ¹tevilka\n"
 
+#: lib/url.c:445
+#, c-format
+msgid "failed to open %s: %s\n"
+msgstr "neuspe¹no odpiranje %s: %s\n"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, c-format
@@ -3556,6 +3525,27 @@ msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: rpmdbOpen() neuspe¹en\n"
 
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "odpiramo datoteko z naèinom 0x%x v %s\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "datoteke ni mo¾no %s zakleniti"
+
+#~ msgid "exclusive"
+#~ msgstr "izkljuèujoèe"
+
+#~ msgid "shared"
+#~ msgstr "deljeno"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "glave pri %d ni mo¾no prebrati za obnovo"
+
+#~ msgid "header changed size!"
+#~ msgstr "velikost glave se je spremenila!"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "paketa %s ni mo¾no prebrati za odnamestitev"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "paket %s ni naveden v %s"
 
index cd4910d..18998e4 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-04-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2095,12 +2095,12 @@ msgstr "fatalna gre
 msgid " failed - "
 msgstr "PGP omanuo"
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2108,22 +2108,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
@@ -2212,7 +2212,7 @@ msgstr "ne mogu da pro
 msgid "loop in prerequisite chain: %s"
 msgstr "petlja u lancu: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2329,7 +2329,7 @@ msgstr "| o
 msgid "(unknown type)"
 msgstr "(nepoznat tip)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -2399,7 +2399,7 @@ msgstr "upit nad paketom koji ima <datoteku>"
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s u %s nije uspelo: %s"
@@ -2413,25 +2413,25 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2842,7 +2842,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "prika¾i listu datoteka u paketu"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
@@ -2906,7 +2906,7 @@ msgstr ""
 
 #: lib/rebuilddb.c:163
 #, c-format
-msgid "replaces files in %s with files from %s to recover"
+msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 #: lib/rebuilddb.c:169
@@ -2999,104 +2999,73 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "rekreiraj bazu podataka iz postojeæe baze"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "neuspelo otvaranje %s: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "ekskluzivno"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "deljeno"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, 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:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "paket %s nije naðen u %s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "paket %s nije naðen u %s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "ne mogu da zauzmem prostor za bazu podataka"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "ne mogu da proèitam zaglavlje na %d za a¾uriranje"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 #, fuzzy
 msgid "counting packages to install\n"
@@ -3536,45 +3505,40 @@ msgstr "gre
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "uklanjanje %s nije uspelo: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju"
 
-#: lib/uninstall.c:106
-#, fuzzy, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr ""
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "neuspelo izvr¹avanje skripta"
 
@@ -3608,6 +3572,11 @@ msgstr "gre
 msgid "url port must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "neuspelo otvaranje %s: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3642,6 +3611,26 @@ msgstr "Nezadovoljene me
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
+#, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "rekreiraj bazu podataka iz postojeæe baze"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
+
+#~ msgid "exclusive"
+#~ msgstr "ekskluzivno"
+
+#~ msgid "shared"
+#~ msgstr "deljeno"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "ne mogu da proèitam zaglavlje na %d za a¾uriranje"
+
+#, fuzzy
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "paket %s nije naveden u %s"
 
index 84f3837..e9d45b7 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.83 $
+# $Revision: 1.84 $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 3.0.4\n"
-"POT-Creation-Date: 2000-04-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2035,12 +2035,12 @@ msgstr "Internt fel"
 msgid " failed - "
 msgstr " misslyckades - "
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "felaktig filstatus: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2048,22 +2048,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "kan inte öppna fil %s: %s"
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "fel när post %s hämtades från %s"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "fel när post %s sparades i %s"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "fel när post %s togs bort ur %s"
@@ -2154,7 +2154,7 @@ msgstr "kan inte l
 msgid "loop in prerequisite chain: %s"
 msgstr "cirkularitet i kedja av förutsättningar: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2274,7 +2274,7 @@ msgstr "| f
 msgid "(unknown type)"
 msgstr "(okänd typ)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   fil: %s åtgärd: %s\n"
@@ -2342,7 +2342,7 @@ msgstr "k
 msgid "renaming %s to %s\n"
 msgstr "byter namn på %s till %s\n"
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "namnbyte från %s till %s misslyckades: %s"
@@ -2356,25 +2356,25 @@ msgstr "k
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s filtest = %d\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr "avbryter installation eftersom vi kör --test\n"
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr "kör (eventuellt) preinstalltionsskript\n"
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varning: %s skapades som %s"
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varning: %s sparades som %s"
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr "kör (eventuellt) postinstallationsskript\n"
 
@@ -2773,7 +2773,7 @@ msgstr "visa tillst
 msgid "display a verbose file listing"
 msgstr "visa en utförlig fillistning"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "ingen dbpath har satts"
 
@@ -2836,8 +2836,8 @@ msgid "failed to replace old database with new database!\n"
 msgstr "kunde inte ersätta gammal databas med ny databas!\n"
 
 #: lib/rebuilddb.c:163
-#, c-format
-msgid "replaces files in %s with files from %s to recover"
+#, 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/rebuilddb.c:169
@@ -2928,30 +2928,7 @@ msgstr ")"
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:192
-#, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "öppnar databas med rättighet 0x%x i %s\n"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, c-format
-msgid "failed to open %s: %s\n"
-msgstr "kunde inte öppna %s: %s\n"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "kan inte få %s lås på databas"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "uteslutande"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "delat"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -2960,74 +2937,66 @@ msgstr ""
 "i nytt format"
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "kan inte öppna paket: %s\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "fann ej paket %s i %s"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "fann ej paket %s i %s"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "kan inte läsa huvud vid %d för uppslagning"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "tar bort databasposter\n"
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "tar bort gruppindex\n"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "tar bort namnindex\n"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "kan inte allokera plats för databas"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "byter namn på %s till %s\n"
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "kan inte läsa huvud vid %d för uppdatering"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr "huvud ändrade storlek!"
-
 #: lib/rpminstall.c:126
 msgid "counting packages to install\n"
 msgstr "räknar paket att installera\n"
@@ -3444,45 +3413,40 @@ msgstr "flyttar katalogen %s till %s\n"
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "kan inte ta bort %s - katalogen är int tom"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "rmdir av %s misslyckades: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "borttagning av %s misslyckades: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "kan inte läsa huvud vid %d för avinstallation"
 
-#: lib/uninstall.c:106
-#, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "kan inte läsa paket med namn %s för avinstallation"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "tar bort filer test = %d\n"
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr "kör (eventuellt) postavinstallationsskript\n"
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr "tar bort databasposter\n"
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "skriptkörning misslyckades"
 
@@ -3515,6 +3479,11 @@ msgstr "fel: %s-port m
 msgid "url port must be a number\n"
 msgstr "url-port måste vara ett tal\n"
 
+#: lib/url.c:445
+#, c-format
+msgid "failed to open %s: %s\n"
+msgstr "kunde inte öppna %s: %s\n"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, c-format
@@ -3549,6 +3518,27 @@ msgstr "Ouppfyllda beroenden f
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: rpmdbOpen() misslyckades\n"
 
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "öppnar databas med rättighet 0x%x i %s\n"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "kan inte få %s lås på databas"
+
+#~ msgid "exclusive"
+#~ msgstr "uteslutande"
+
+#~ msgid "shared"
+#~ msgstr "delat"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr "kan inte läsa huvud vid %d för uppdatering"
+
+#~ msgid "header changed size!"
+#~ msgstr "huvud ändrade storlek!"
+
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "kan inte läsa paket med namn %s för avinstallation"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "paket %s inte listat i %s"
 
index 86d9ac5..b47730c 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-07 11:56-0400\n"
+"POT-Creation-Date: 2000-04-11 12:21-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"
@@ -2133,12 +2133,12 @@ msgstr "
 msgid " failed - "
 msgstr "PGP hata verdi"
 
-#: lib/dbindex.c:99
+#: lib/dbindex.c:103
 #, fuzzy, c-format
 msgid "bad db file %s"
 msgstr "%s açýlamadý: %s"
 
-#: lib/dbindex.c:139
+#: lib/dbindex.c:143
 msgid ""
 "\n"
 "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n"
@@ -2146,22 +2146,22 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/dbindex.c:152
+#: lib/dbindex.c:156
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/dbindex.c:192
+#: lib/dbindex.c:207
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
 
-#: lib/dbindex.c:206
+#: lib/dbindex.c:221
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "%s kaydý %s dosyasýna yazýlamýyor"
 
-#: lib/dbindex.c:211
+#: lib/dbindex.c:226
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
@@ -2250,7 +2250,7 @@ msgstr "ba
 msgid "loop in prerequisite chain: %s"
 msgstr "gerekenler zincirinde döngü: %s"
 
-#: lib/falloc.c:124
+#: lib/falloc.c:135
 #, c-format
 msgid ""
 "free list corrupt (%u)- please run\n"
@@ -2367,7 +2367,7 @@ msgstr "dizinin sonunda | bekleniyordu"
 msgid "(unknown type)"
 msgstr "(bilinmeyen tip)"
 
-#: lib/install.c:146 lib/uninstall.c:200
+#: lib/install.c:146 lib/uninstall.c:184
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "%s açýlamadý: %s"
@@ -2437,7 +2437,7 @@ msgstr "<dosya> isimli dosyay
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:562 lib/install.c:854 lib/uninstall.c:31
+#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s 'nin isminin  %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
@@ -2451,25 +2451,25 @@ msgstr ""
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: lib/install.c:784
+#: lib/install.c:764
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:789
+#: lib/install.c:769
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:814
+#: lib/install.c:794
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:850
+#: lib/install.c:830
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:924
+#: lib/install.c:904
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
@@ -2882,7 +2882,7 @@ msgstr ""
 msgid "display a verbose file listing"
 msgstr "Paketin içerdiði dosyalarý gösterme"
 
-#: lib/rebuilddb.c:34 lib/rpmdb.c:295
+#: lib/rebuilddb.c:34 lib/rpmdb.c:227
 msgid "no dbpath has been set"
 msgstr "dbpath deðeri girilmemiþ"
 
@@ -2946,7 +2946,7 @@ msgstr ""
 
 #: lib/rebuilddb.c:163
 #, c-format
-msgid "replaces files in %s with files from %s to recover"
+msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
 #: lib/rebuilddb.c:169
@@ -3039,105 +3039,74 @@ msgstr ""
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:192
-#, fuzzy, c-format
-msgid "opening database mode 0x%x in %s\n"
-msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
-
-#: lib/rpmdb.c:204 lib/url.c:445
-#, fuzzy, c-format
-msgid "failed to open %s: %s\n"
-msgstr "%s açýlamadý: %s"
-
-#: lib/rpmdb.c:218 lib/rpmdb.c:226
-#, c-format
-msgid "cannot get %s lock on database"
-msgstr "Veritabaný için %s kilit (lock) alýnamadý"
-
-#: lib/rpmdb.c:219
-msgid "exclusive"
-msgstr "özel"
-
-#: lib/rpmdb.c:227
-msgid "shared"
-msgstr "paylaþýlan (shared)"
-
-#: lib/rpmdb.c:268
+#: lib/rpmdb.c:198
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:554
+#: lib/rpmdb.c:447
 #, fuzzy, c-format
 msgid "cannot retrieve package \"%s\" from db"
 msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
 
-#: lib/rpmdb.c:583
+#: lib/rpmdb.c:476
 #, fuzzy, c-format
 msgid "package not found with key \"%s\" in %s"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: lib/rpmdb.c:592
+#: lib/rpmdb.c:485
 #, fuzzy, c-format
 msgid "key \"%s\" not found in %s"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: lib/rpmdb.c:610
+#: lib/rpmdb.c:503
 #, fuzzy, c-format
 msgid "rpmdbRemove: cannot read header at 0x%x"
 msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
 
-#: lib/rpmdb.c:638
+#: lib/rpmdb.c:528
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:644
+#: lib/rpmdb.c:534
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:652
+#: lib/rpmdb.c:542
 #, fuzzy, c-format
 msgid "removing %d entries in %s index:\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:656 lib/rpmdb.c:841
+#: lib/rpmdb.c:546 lib/rpmdb.c:743
 #, c-format
 msgid "\t%6d %s\n"
 msgstr ""
 
 # reservieren???
-#: lib/rpmdb.c:774
-msgid "cannot allocate space for database"
+#: lib/rpmdb.c:681
+#, fuzzy
+msgid "cannot allocate new instance in database"
 msgstr "Veritabaný için yer bulunamadý"
 
-#: lib/rpmdb.c:818
+#: lib/rpmdb.c:720
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:830
+#: lib/rpmdb.c:732
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:837
+#: lib/rpmdb.c:739
 #, c-format
 msgid "adding %d entries to %s index:\n"
 msgstr ""
 
-#: lib/rpmdb.c:895
-#, c-format
-msgid "cannot read header at %d for update"
-msgstr "%d numaralý paketin güncelleme için gereken 'header' kýsmý okunamadý"
-
-#: lib/rpmdb.c:908
-msgid "header changed size!"
-msgstr ""
-
 #: lib/rpminstall.c:126
 #, fuzzy
 msgid "counting packages to install\n"
@@ -3577,45 +3546,40 @@ msgstr "%s dizinin olu
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:42
+#: lib/uninstall.c:40
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "%s silinemedi - belirtilen dizin boþ deðil"
 
-#: lib/uninstall.c:45
+#: lib/uninstall.c:43
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s"
 
-#: lib/uninstall.c:53
+#: lib/uninstall.c:51
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
 
-#: lib/uninstall.c:91
+#: lib/uninstall.c:89
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý"
 
-#: lib/uninstall.c:106
-#, fuzzy, c-format
-msgid "cannot read packages named %s for uninstall"
-msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý"
-
-#: lib/uninstall.c:146
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:214
+#: lib/uninstall.c:198
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:228
+#: lib/uninstall.c:212
 msgid "removing database entry\n"
 msgstr ""
 
-#: lib/uninstall.c:412
+#: lib/uninstall.c:396
 msgid "execution of script failed"
 msgstr "betik (script) çalýþtýrýlamadý "
 
@@ -3649,6 +3613,11 @@ msgstr "hata: ftpport bir say
 msgid "url port must be a number\n"
 msgstr "hata: ftpport bir sayý olmalý\n"
 
+#: lib/url.c:445
+#, fuzzy, c-format
+msgid "failed to open %s: %s\n"
+msgstr "%s açýlamadý: %s"
+
 #. XXX Fstrerror
 #: lib/url.c:462
 #, fuzzy, c-format
@@ -3683,6 +3652,27 @@ msgstr "%s-%s-%s 'nin ba
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Eriþilemedi\n"
 
+#, fuzzy
+#~ msgid "opening database mode 0x%x in %s\n"
+#~ msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
+
+#~ msgid "cannot get %s lock on database"
+#~ msgstr "Veritabaný için %s kilit (lock) alýnamadý"
+
+#~ msgid "exclusive"
+#~ msgstr "özel"
+
+#~ msgid "shared"
+#~ msgstr "paylaþýlan (shared)"
+
+#~ msgid "cannot read header at %d for update"
+#~ msgstr ""
+#~ "%d numaralý paketin güncelleme için gereken 'header' kýsmý okunamadý"
+
+#, fuzzy
+#~ msgid "cannot read packages named %s for uninstall"
+#~ msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý"
+
 #~ msgid "package %s not listed in %s"
 #~ msgstr "%s paketi %s altýnda gözükmüyor"
 
index dd7a566..8ea35e3 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.4
+Release: 0.5
 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,11 @@ fi
 /usr/include/popt.h
 
 %changelog
+* Tue Apr 11 2000 Jeff Johnson <jbj@redhat.com>
+- solaris2.6: avoid bsearch with empty dir list (Ric Klaren - klaren@cs.utwente.nl)
+- db3: save join keys in endian neutral binary format.
+- treat legacy falloc.c as "special" db[01] index for package headers.
+
 * Thu Apr  6 2000 Jeff Johnson <jbj@redhat.com>
 - use hashed access for package headers.