From: jbj Date: Sun, 9 Jul 2000 15:17:11 +0000 (+0000) Subject: fix: do chroot around pre-transaction syscalls. X-Git-Tag: rpm-4.4-release~2031 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c956f0437ab76bf1ea79a684de8e6921c3368777;p=platform%2Fupstream%2Frpm.git fix: do chroot around pre-transaction syscalls. CVS patchset: 3927 CVS date: 2000/07/09 15:17:11 --- diff --git a/lib/depends.c b/lib/depends.c index 0d400bd..4e05278 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -583,15 +583,15 @@ int headerMatchesDepFlags(Header h, } -rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * root) +rpmTransactionSet rpmtransCreateSet(rpmdb rpmdb, const char * rootDir) { rpmTransactionSet rpmdep; int rootLen; - if (!root) root = ""; + if (!rootDir) rootDir = ""; - rpmdep = xmalloc(sizeof(*rpmdep)); - rpmdep->db = db; + rpmdep = xcalloc(1, sizeof(*rpmdep)); + rpmdep->rpmdb = rpmdb; rpmdep->scriptFd = NULL; rpmdep->numRemovedPackages = 0; rpmdep->allocedRemovedPackages = 5; @@ -599,17 +599,18 @@ rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * root) sizeof(*rpmdep->removedPackages)); /* This canonicalizes the root */ - rootLen = strlen(root); - if (!(rootLen && root[rootLen - 1] == '/')) { - char * newRootdir; - - newRootdir = alloca(rootLen + 2); - *newRootdir = '\0'; - (void) stpcpy( stpcpy(newRootdir, root), "/"); - root = newRootdir; + rootLen = strlen(rootDir); + if (!(rootLen && rootDir[rootLen - 1] == '/')) { + char * t; + + t = alloca(rootLen + 2); + *t = '\0'; + (void) stpcpy( stpcpy(t, rootDir), "/"); + rootDir = t; } - rpmdep->root = xstrdup(root); + rpmdep->rootDir = xstrdup(rootDir); + rpmdep->currDir = NULL; alCreate(&rpmdep->addedPackages); alCreate(&rpmdep->availablePackages); @@ -678,14 +679,14 @@ int rpmtransAddPackage(rpmTransactionSet rpmdep, Header h, FD_t fd, rpmdep->addedPackages.list; rpmdep->order[rpmdep->orderCount++].u.addedIndex = alNum; - if (!upgrade || rpmdep->db == NULL) return 0; + if (!upgrade || rpmdep->rpmdb == NULL) return 0; headerNVR(h, &name, NULL, NULL); { rpmdbMatchIterator mi; Header h2; - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_NAME, name, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_NAME, name, 0); while((h2 = rpmdbNextIterator(mi)) != NULL) { if (rpmVersionCompare(h, h2)) removePackage(rpmdep, rpmdbGetIteratorOffset(mi), alNum); @@ -722,7 +723,7 @@ int rpmtransAddPackage(rpmTransactionSet rpmdep, Header h, FD_t fd, { rpmdbMatchIterator mi; Header h2; - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_NAME, obsoletes[j], 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_NAME, obsoletes[j], 0); rpmdbPruneIterator(mi, rpmdep->removedPackages, rpmdep->numRemovedPackages, 1); @@ -769,11 +770,16 @@ void rpmtransFree(rpmTransactionSet rpmdep) alFree(addedPackages); alFree(availablePackages); - free(rpmdep->removedPackages); - xfree(rpmdep->root); - free(rpmdep->order); + if (rpmdep->removedPackages) + free(rpmdep->removedPackages); + if (rpmdep->order) + free(rpmdep->order); if (rpmdep->scriptFd) rpmdep->scriptFd = fdFree(rpmdep->scriptFd, "rpmtransSetScriptFd (rpmtransFree"); + if (rpmdep->rootDir) + xfree(rpmdep->rootDir); + if (rpmdep->currDir) + xfree(rpmdep->currDir); free(rpmdep); } @@ -938,7 +944,7 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep, */ if (_cacheDependsRC) { dbiIndex dbi; - dbi = dbiOpen(rpmdep->db, RPMDBI_DEPENDS, 0); + dbi = dbiOpen(rpmdep->rpmdb, RPMDBI_DEPENDS, 0); if (dbi == NULL) _cacheDependsRC = 0; else { @@ -981,11 +987,11 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep, goto exit; } - if (rpmdep->db != NULL) { + if (rpmdep->rpmdb != NULL) { if (*keyName == '/') { /* keyFlags better be 0! */ - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_BASENAMES, keyName, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_BASENAMES, keyName, 0); rpmdbPruneIterator(mi, rpmdep->removedPackages, rpmdep->numRemovedPackages, 1); @@ -999,7 +1005,7 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep, rpmdbFreeIterator(mi); } - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_PROVIDENAME, keyName, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_PROVIDENAME, keyName, 0); rpmdbPruneIterator(mi, rpmdep->removedPackages, rpmdep->numRemovedPackages, 1); while ((h = rpmdbNextIterator(mi)) != NULL) { @@ -1013,7 +1019,7 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep, rpmdbFreeIterator(mi); #ifdef DYING - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_NAME, keyName, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_NAME, keyName, 0); rpmdbPruneIterator(mi, rpmdep->removedPackages, rpmdep->numRemovedPackages, 1); while ((h = rpmdbNextIterator(mi)) != NULL) { @@ -1055,7 +1061,7 @@ exit: */ if (_cacheDependsRC) { dbiIndex dbi; - dbi = dbiOpen(rpmdep->db, RPMDBI_DEPENDS, 0); + dbi = dbiOpen(rpmdep->rpmdb, RPMDBI_DEPENDS, 0); if (dbi == NULL) { _cacheDependsRC = 0; } else { @@ -1252,7 +1258,7 @@ static int checkDependentPackages(rpmTransactionSet rpmdep, struct problemsSet * psp, const char * key) { rpmdbMatchIterator mi; - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_REQUIRENAME, key, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_REQUIRENAME, key, 0); return checkPackageSet(rpmdep, psp, key, mi); } @@ -1262,9 +1268,9 @@ static int checkDependentConflicts(rpmTransactionSet rpmdep, { int rc = 0; - if (rpmdep->db) { /* XXX is this necessary? */ + if (rpmdep->rpmdb) { /* XXX is this necessary? */ rpmdbMatchIterator mi; - mi = rpmdbInitIterator(rpmdep->db, RPMTAG_CONFLICTNAME, key, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMTAG_CONFLICTNAME, key, 0); rc = checkPackageSet(rpmdep, psp, key, mi); } @@ -1520,7 +1526,7 @@ int rpmdepCheck(rpmTransactionSet rpmdep, /* now look at the removed packages and make sure they aren't critical */ if (rpmdep->numRemovedPackages > 0) { - mi = rpmdbInitIterator(rpmdep->db, RPMDBI_PACKAGES, NULL, 0); + mi = rpmdbInitIterator(rpmdep->rpmdb, RPMDBI_PACKAGES, NULL, 0); rpmdbAppendIterator(mi, rpmdep->removedPackages, rpmdep->numRemovedPackages); while ((h = rpmdbNextIterator(mi)) != NULL) { diff --git a/lib/depends.h b/lib/depends.h index dc959e5..e47d768 100644 --- a/lib/depends.h +++ b/lib/depends.h @@ -5,26 +5,27 @@ struct availablePackage { Header h; - /*@owned@*/ const char ** provides; - /*@owned@*/ const char ** providesEVR; - /*@dependent@*/ int * provideFlags; - /*@owned@*/ const char ** baseNames; - /*@dependent@*/ const char * name; - /*@dependent@*/ const char * version; - /*@dependent@*/ const char * release; - /*@dependent@*/ int_32 * epoch; - int providesCount, filesCount; +/*@owned@*/ const char ** provides; +/*@owned@*/ const char ** providesEVR; +/*@dependent@*/ int * provideFlags; +/*@owned@*/ const char ** baseNames; +/*@dependent@*/ const char * name; +/*@dependent@*/ const char * version; +/*@dependent@*/ const char * release; +/*@dependent@*/ int_32 * epoch; + int providesCount; + int filesCount; uint_32 multiLib; /* MULTILIB */ - /*@dependent@*/ const void * key; +/*@dependent@*/ const void * key; rpmRelocation * relocs; - /*@null@*/ FD_t fd; +/*@null@*/ FD_t fd; } ; enum indexEntryType { IET_NAME, IET_PROVIDES }; struct availableIndexEntry { - /*@dependent@*/ struct availablePackage * package; - /*@dependent@*/ const char * entry; +/*@dependent@*/ struct availablePackage * package; +/*@dependent@*/ const char * entry; size_t entryLen; enum indexEntryType type; } ; @@ -32,27 +33,28 @@ struct availableIndexEntry { struct fileIndexEntry { int pkgNum; int fileFlags; /* MULTILIB */ - /*@dependent@*/ const char * baseName; +/*@dependent@*/ const char * baseName; } ; struct dirInfo { - /*@owned@*/ char * dirName; /* xstrdup'd */ +/*@owned@*/ char * dirName; /* xstrdup'd */ int dirNameLen; - /*@owned@*/ struct fileIndexEntry * files; /* xmalloc'd */ +/*@owned@*/ struct fileIndexEntry * files; /* xmalloc'd */ int numFiles; } ; struct availableIndex { - /*@null@*/ struct availableIndexEntry * index ; +/*@null@*/ struct availableIndexEntry * index ; int size; } ; struct availableList { - /*@owned@*/ /*@null@*/ struct availablePackage * list; +/*@owned@*/ /*@null@*/ struct availablePackage * list; struct availableIndex index; - int size, alloced; + int size; + int alloced; int numDirs; - /*@owned@*/ struct dirInfo * dirs; /* xmalloc'd */ +/*@owned@*/ struct dirInfo * dirs; /* xmalloc'd */ }; struct transactionElement { @@ -67,14 +69,18 @@ struct transactionElement { }; struct rpmTransactionSet_s { - /*@owned@*/ /*@null@*/ rpmdb db; /* may be NULL */ - /*@only@*/ int * removedPackages; - int numRemovedPackages, allocedRemovedPackages; - struct availableList addedPackages, availablePackages; - /*@only@*/ struct transactionElement * order; - int orderCount, orderAlloced; - /*@only@*/ const char * root; - /*@null@*/ FD_t scriptFd; +/*@owned@*/ /*@null@*/ rpmdb rpmdb; /* may be NULL */ +/*@only@*/ int * removedPackages; + int numRemovedPackages; + int allocedRemovedPackages; + struct availableList addedPackages; + struct availableList availablePackages; +/*@only@*/ struct transactionElement * order; + int orderCount; + int orderAlloced; +/*@only@*/ const char * rootDir; +/*@only@*/ const char * currDir; +/*@null@*/ FD_t scriptFd; }; struct problemsSet { @@ -87,6 +93,7 @@ struct problemsSet { extern "C" { #endif +/* XXX lib/uninstall.c */ int headerMatchesDepFlags(Header h, const char *reqName, const char * reqInfo, int reqFlags); #ifdef __cplusplus diff --git a/lib/transaction.c b/lib/transaction.c index c2dc024..ce90e0b 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -1221,7 +1221,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, int flEntries; int nexti; int lastFailed; - const char * currDir; FD_t fd; const char ** filesystems; int filesystemCount; @@ -1231,6 +1230,10 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, /* FIXME: what if the same package is included in ts twice? */ + if (ts->currDir) + xfree(ts->currDir); + ts->currDir = currentDirectory(); + /* Get available space on mounted file systems */ if (!(ignoreSet & RPMPROB_FILTER_DISKSPACE) && !rpmGetFilesystemList(&filesystems, &filesystemCount)) { @@ -1306,16 +1309,16 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, if (!(ignoreSet & RPMPROB_FILTER_OLDPACKAGE)) { rpmdbMatchIterator mi; Header oldH; - mi = rpmdbInitIterator(ts->db, RPMTAG_NAME, alp->name, 0); + mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_NAME, alp->name, 0); while ((oldH = rpmdbNextIterator(mi)) != NULL) - ensureOlder(ts->db, alp->h, oldH, probs, alp->key); + ensureOlder(ts->rpmdb, alp->h, oldH, probs, alp->key); rpmdbFreeIterator(mi); } /* XXX multilib should not display "already installed" problems */ if (!(ignoreSet & RPMPROB_FILTER_REPLACEPKG) && !alp->multiLib) { rpmdbMatchIterator mi; - mi = rpmdbInitIterator(ts->db, RPMTAG_NAME, alp->name, 0); + mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_NAME, alp->name, 0); rpmdbSetIteratorVersion(mi, alp->version); rpmdbSetIteratorRelease(mi, alp->release); while (rpmdbNextIterator(mi) != NULL) { @@ -1337,7 +1340,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, Header h; int fileCount; - mi = rpmdbInitIterator(ts->db, RPMDBI_PACKAGES, NULL, 0); + mi = rpmdbInitIterator(ts->rpmdb, RPMDBI_PACKAGES, NULL, 0); rpmdbAppendIterator(mi, ts->removedPackages, ts->numRemovedPackages); while ((h = rpmdbNextIterator(mi)) != NULL) { if (headerGetEntry(h, RPMTAG_BASENAMES, NULL, NULL, &fileCount)) @@ -1371,8 +1374,14 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, if (!(transFlags & RPMTRANS_FLAG_TEST) && headerGetEntry(alp->h, RPMTAG_PRETRANSACTION, NULL, (void **) &preTrans, &preTransCount)) { + + chdir("/"); + /*@-unrecog@*/ chroot(ts->rootDir); /*@=unrecog@*/ + for (j = 0; j < preTransCount; j++) { - rpmMessage(RPMMESS_DEBUG, _("executing pre-transaction syscall: \"%s\"\n"), preTrans[j]); + rpmMessage(RPMMESS_DEBUG, + _("executing pre-transaction syscall: \"%s\"\n"), + preTrans[j]); rc = rpmSyscall(preTrans[j], 0); if (rc != 0) psAppend(probs, RPMPROB_BADPRETRANS, alp->key, alp->h, @@ -1380,6 +1389,10 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, } xfree(preTrans); preTrans = NULL; + + chroot("."); + chdir(ts->currDir); + } if (!headerGetEntryMinMemory(alp->h, RPMTAG_BASENAMES, NULL, @@ -1401,7 +1414,8 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, fi->record = ts->order[oc].u.removed.dboffset; { rpmdbMatchIterator mi; - mi = rpmdbInitIterator(ts->db, RPMDBI_PACKAGES, &fi->record, sizeof(fi->record)); + mi = rpmdbInitIterator(ts->rpmdb, RPMDBI_PACKAGES, + &fi->record, sizeof(fi->record)); if ((fi->h = rpmdbNextIterator(mi)) != NULL) fi->h = headerLink(fi->h); rpmdbFreeIterator(mi); @@ -1474,19 +1488,11 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, fi->fps = xmalloc(sizeof(*fi->fps) * fi->fc); } - /* There are too many returns to plug this leak. Use alloca instead. */ - { const char *s = currentDirectory(); - char *t = alloca(strlen(s) + 1); - strcpy(t, s); - currDir = t; - xfree(s); - } - /* Open all dtabase indices before installing */ - rpmdbOpenAll(ts->db); + rpmdbOpenAll(ts->rpmdb); chdir("/"); - /*@-unrecog@*/ chroot(ts->root); /*@=unrecog@*/ + /*@-unrecog@*/ chroot(ts->rootDir); /*@=unrecog@*/ ht = htCreate(totalFileCount * 2, 0, 0, fpHashFunction, fpEqual); fpc = fpCacheCreate(totalFileCount); @@ -1517,7 +1523,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, /* Extract file info for all files in this package from the database. */ matches = xcalloc(sizeof(*matches), fi->fc); - if (rpmdbFindFpList(ts->db, fi->fps, matches, fi->fc)) + if (rpmdbFindFpList(ts->rpmdb, fi->fps, matches, fi->fc)) return 1; numShared = 0; @@ -1588,13 +1594,13 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, /* Determine the fate of each file. */ switch (fi->type) { case TR_ADDED: - handleInstInstalledFiles(fi, ts->db, shared, nexti - i, + handleInstInstalledFiles(fi, ts->rpmdb, shared, nexti - i, !(beingRemoved || (ignoreSet & RPMPROB_FILTER_REPLACEOLDFILES)), probs, transFlags); break; case TR_REMOVED: if (!beingRemoved) - handleRmvdInstalledFiles(fi, ts->db, shared, nexti - i); + handleRmvdInstalledFiles(fi, ts->rpmdb, shared, nexti - i); break; } } @@ -1626,12 +1632,11 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, NOTIFY((NULL, RPMCALLBACK_TRANS_STOP, 6, flEntries, NULL, notifyData)); chroot("."); - chdir(currDir); + chdir(ts->currDir); /* =============================================== * Free unused memory as soon as possible. */ - htFree(ht); for (oc = 0, fi = flList; oc < ts->orderCount; oc++, fi++) { if (fi->fc == 0) @@ -1654,6 +1659,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, } fpCacheFree(fpc); + htFree(ht); /* =============================================== * If unfiltered problems exist, free memory and return. @@ -1708,7 +1714,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, if (alp->multiLib) transFlags |= RPMTRANS_FLAG_MULTILIB; - if (installBinaryPackage(ts->root, ts->db, fd, + if (installBinaryPackage(ts->rootDir, ts->rpmdb, fd, hdrs[i], transFlags, notify, notifyData, alp->key, fi->actions, fi->fc ? fi->replaced : NULL, @@ -1730,12 +1736,12 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, case TR_REMOVED: if (ts->order[oc].u.removed.dependsOnIndex == lastFailed) break; - if (removeBinaryPackage(ts->root, ts->db, fi->record, + if (removeBinaryPackage(ts->rootDir, ts->rpmdb, fi->record, transFlags, fi->actions, ts->scriptFd)) ourrc++; break; } - (void) rpmdbSync(ts->db); + (void) rpmdbSync(ts->rpmdb); } freeFl(ts, flList); diff --git a/po/cs.po b/po/cs.po index b85c7aa..2fac381 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 1998-10-10 10:10+0200\n" "Last-Translator: Pavel Makovec \n" "Language-Team: Czech \n" @@ -2429,79 +2429,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "polo¾ka 'vy¾aduje' balíèku %s není splnìna: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "balíèek %s koliduje: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "smyèka v øetìzu podmínek: %s" @@ -3918,7 +3918,7 @@ msgstr "Prob msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/da.po b/po/da.po index 81d036e..c1ae726 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 2000-03-07 05:17+01:00\n" "Last-Translator: K. Christiansen \n" "Language-Team: Danish/Dansk \n" @@ -2271,79 +2271,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3714,7 +3714,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/de.po b/po/de.po index df02b57..004d69d 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -2521,79 +2521,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -4043,7 +4043,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/es.po b/po/es.po index 18824a5..3f0e222 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index c4ac22d..9d91d36 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -2463,79 +2463,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "paketti %s ei ole %s:ssä" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "silmukka edellytysten ketjussa: %s" @@ -3958,7 +3958,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index 80c971d..dc3719c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,5 +1,5 @@ msgid "" -msgstr "POT-Creation-Date: 2000-07-09 00:38-0400\n" +msgstr "POT-Creation-Date: 2000-07-09 11:09-0400\n" #: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:435 #, c-format @@ -2448,79 +2448,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "aucun package n'a été spécifié pour l'installation" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3937,7 +3937,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/gl.po b/po/gl.po index 18824a5..3f0e222 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index 18824a5..3f0e222 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/id.po b/po/id.po index 18824a5..3f0e222 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/is.po b/po/is.po index 367754d..c0ef771 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 1.0\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 2000-06-16 02:20+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -2247,79 +2247,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3690,7 +3690,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/it.po b/po/it.po index 18824a5..3f0e222 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 5c5e32f..9e18a6e 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -127,7 +127,7 @@ msgstr "copyright # build root [BuildRoot] # net share [¥Í¥Ã¥È¶¦Í­] # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë] -# $Id: ja.po,v 1.84 2000/07/09 04:42:13 jbj Exp $ +# $Id: ja.po,v 1.85 2000/07/09 15:17:12 jbj Exp $ #: rpm.c:178 rpmqv.c:257 #, c-format msgid "rpm: %s\n" @@ -2395,79 +2395,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, fuzzy, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %s ¤Ï¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, fuzzy, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, fuzzy, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, fuzzy, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "%s: %s ¤Ï db ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "%s: %s ¤Ï rpmlib ¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤¹: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "prerequisite ¥Á¥§¡¼¥ó¤Î¥ë¡¼¥×: %s" @@ -3902,7 +3902,7 @@ msgstr " msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/ko.po b/po/ko.po index 18824a5..3f0e222 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/no.po b/po/no.po index 6321b2c..8d5886d 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 2000-06-22 21:59+02:00\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -2276,79 +2276,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3719,7 +3719,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 43ccbb0..ba17769 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -2402,79 +2402,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakiet %s jest w konflikcie: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3870,7 +3870,7 @@ msgstr "przesuwanie %s do %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/pt.po b/po/pt.po index 18824a5..3f0e222 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index d106f3d..b2f8a15 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ # Revised by Arnaldo Carvalho de Melo , 1998. # msgid "" -msgstr "POT-Creation-Date: 2000-07-09 00:38-0400\n" +msgstr "POT-Creation-Date: 2000-07-09 11:09-0400\n" #: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:435 #, c-format @@ -2524,79 +2524,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "não foi passado pacote para instalação" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "não foi passado pacote para desinstalação" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -4070,7 +4070,7 @@ msgstr "N msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/ro.po b/po/ro.po index 0cfacba..5bb2e38 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -2247,79 +2247,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3690,7 +3690,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 18824a5..3f0e222 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 0165a60..6524a7e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" @@ -2405,79 +2405,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s" @@ -3873,7 +3873,7 @@ msgstr " msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/sk.po b/po/sk.po index 1adab2d..990c635 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -2409,79 +2409,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "balík %s koliduje: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "sluèka v re»azi po¾iadaviek: %s" @@ -3877,7 +3877,7 @@ msgstr "pres msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/sl.po b/po/sl.po index 5c4944d..cadb75d 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 , 2000. -# $Id: sl.po,v 1.69 2000/07/09 04:42:14 jbj Exp $ +# $Id: sl.po,v 1.70 2000/07/09 15:17:12 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 2000-02-17 22:25+01:00\n" "Last-Translator: Primo¾ Peterlin \n" "Language-Team: Slovenian \n" @@ -2394,79 +2394,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:838 +#: lib/depends.c:844 #, fuzzy, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %s zadovoljen ob dodatnem seznamu datotek.\n" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "%s: %s zadovoljen ob dodatnem paketu.\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, fuzzy, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %s zadovoljen ob dodatni ponudbi.\n" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, fuzzy, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, fuzzy, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %s zadovoljen ob ponudbi db.\n" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "%s: %s zadovoljen ob paketih db.\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "%s: %s zadovoljen ob razlièici rpmlib.\n" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: %s zadovoljen ob dodatnem paketu.\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "paket %s zahteva, a ni zadovoljeno: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s v sporu: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "zanka v predpogojevani verigi: %s" @@ -3859,7 +3859,7 @@ msgstr "prestavljamo imenik %s v %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/sr.po b/po/sr.po index 2f8060f..7f8c4a8 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" "From: Erik Troan \n" @@ -2413,79 +2413,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "paket %s nije naveden u %s" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "petlja u lancu: %s" @@ -3907,7 +3907,7 @@ msgstr "gre msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index cc7f828..899b202 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: 2000-06-22 23:35+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -2304,79 +2304,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s JA (lade till filer)\n" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "%s: %-45s JA (lade till paket)\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "%s: %-45s JA (lade till paket, BORDE INTE HÄNDA)\n" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s JA (lade till tillhandahållande)\n" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "%s: %-45s %-3s (cachad)\n" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s JA (db-filer)\n" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s JA (db tillhandahållande)\n" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "%s: %-45s JA (db-paket)\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "%s: %45s JA (rpmlib-version)\n" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NEJ\n" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "paket %s behov inte uppfyllda: %s\n" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s står i konflikt: %s\n" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "cirkularitet i kedja av förutsättningar: %s" @@ -3787,7 +3787,7 @@ msgstr "flyttar katalogen %s till %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/tr.po b/po/tr.po index 782556b..c7b6392 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-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2460,79 +2460,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, fuzzy, c-format msgid "%s: %-45s YES (added package)\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, fuzzy, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "%s paketi %s altýnda gözükmüyor" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "%s paketi %s altýnda gözükmüyor" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "gerekenler zincirinde döngü: %s" @@ -3957,7 +3957,7 @@ msgstr "%s dizinin olu msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr "" diff --git a/po/uk.po b/po/uk.po index 18824a5..3f0e222 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-07-09 00:38-0400\n" +"POT-Creation-Date: 2000-07-09 11:09-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2252,79 +2252,79 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:838 +#: lib/depends.c:844 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:887 +#: lib/depends.c:893 #, c-format msgid "%s: %-45s YES (added package)\n" msgstr "" -#: lib/depends.c:891 +#: lib/depends.c:897 #, c-format msgid "%s: %-45s YES (added package, SHOULDN'T HAPPEN)\n" msgstr "" -#: lib/depends.c:910 +#: lib/depends.c:916 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:954 +#: lib/depends.c:960 #, c-format msgid "%s: %-45s %-3s (cached)\n" msgstr "" -#: lib/depends.c:971 +#: lib/depends.c:977 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:994 +#: lib/depends.c:1000 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1007 +#: lib/depends.c:1013 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1027 #, c-format msgid "%s: %-45s YES (db packages)\n" msgstr "" -#: lib/depends.c:1038 +#: lib/depends.c:1044 #, c-format msgid "%s: %-45s YES (rpmlib version)\n" msgstr "" -#: lib/depends.c:1049 +#: lib/depends.c:1055 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1070 +#: lib/depends.c:1076 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1124 +#: lib/depends.c:1130 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1191 +#: lib/depends.c:1197 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1318 +#: lib/depends.c:1324 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -3695,7 +3695,7 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1375 +#: lib/transaction.c:1383 #, c-format msgid "executing pre-transaction syscall: \"%s\"\n" msgstr ""