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