From 966fabbc441b5d859ecda64fe926be3912603fe5 Mon Sep 17 00:00:00 2001 From: jbj Date: Sun, 28 Oct 2001 22:17:47 +0000 Subject: [PATCH] - memory indices for dependency check are typedef'd and abstract'd. - no-brainer refcounts for fi object, debug the mess. - dump the header early in transaction, recreate fi before installing. CVS patchset: 5137 CVS date: 2001/10/28 22:17:47 --- CHANGES | 3 + build.c | 7 +- build/buildio.h | 2 +- build/pack.c | 8 +- build/rpmspec.h | 11 +-- build/spec.c | 13 ++- lib/depends.c | 222 ++++++++++++++++++++++++++++++-------------------- lib/depends.h | 54 +++++++++---- lib/fsm.c | 25 ++++-- lib/fsm.h | 7 +- lib/psm.c | 90 +++++++++++++-------- lib/psm.h | 19 +++-- lib/rpmlib.h | 126 ++++++++++++++++++++++------- lib/transaction.c | 47 ++++++----- lib/ts.c | 231 +++++++++++++++++++++++++++++------------------------ lib/verify.c | 10 ++- po/cs.po | 216 ++++++++++++++++++++++++------------------------- po/da.po | 216 ++++++++++++++++++++++++------------------------- po/de.po | 216 ++++++++++++++++++++++++------------------------- po/en_RN.po | 216 ++++++++++++++++++++++++------------------------- po/es.po | 216 ++++++++++++++++++++++++------------------------- po/eu_ES.po | 216 ++++++++++++++++++++++++------------------------- po/fi.po | 216 ++++++++++++++++++++++++------------------------- po/fr.po | 216 ++++++++++++++++++++++++------------------------- po/gl.po | 216 ++++++++++++++++++++++++------------------------- po/hu.po | 216 ++++++++++++++++++++++++------------------------- po/id.po | 216 ++++++++++++++++++++++++------------------------- po/is.po | 216 ++++++++++++++++++++++++------------------------- po/it.po | 216 ++++++++++++++++++++++++------------------------- po/ja.po | 216 ++++++++++++++++++++++++------------------------- po/ko.po | 216 ++++++++++++++++++++++++------------------------- po/no.po | 216 ++++++++++++++++++++++++------------------------- po/pl.po | 216 ++++++++++++++++++++++++------------------------- po/pt.po | 216 ++++++++++++++++++++++++------------------------- po/pt_BR.po | 216 ++++++++++++++++++++++++------------------------- po/ro.po | 216 ++++++++++++++++++++++++------------------------- po/rpm.pot | 216 ++++++++++++++++++++++++------------------------- po/ru.po | 216 ++++++++++++++++++++++++------------------------- po/sk.po | 216 ++++++++++++++++++++++++------------------------- po/sl.po | 218 +++++++++++++++++++++++++------------------------- po/sr.po | 216 ++++++++++++++++++++++++------------------------- po/sv.po | 216 ++++++++++++++++++++++++------------------------- po/tr.po | 216 ++++++++++++++++++++++++------------------------- po/uk.po | 216 ++++++++++++++++++++++++------------------------- po/wa.po | 216 ++++++++++++++++++++++++------------------------- po/zh.po | 216 ++++++++++++++++++++++++------------------------- po/zh_CN.GB2312.po | 216 ++++++++++++++++++++++++------------------------- rpm.spec | 5 +- rpm.spec.in | 3 + rpmdb/rpmdb.c | 42 +++++++--- 50 files changed, 3937 insertions(+), 3686 deletions(-) diff --git a/CHANGES b/CHANGES index acbf2ea..b95a658 100644 --- a/CHANGES +++ b/CHANGES @@ -28,6 +28,9 @@ - check added header against transaction set, replace if newer. - transaction sets created in cli main. - no-brainer refcounts for ts object. + - memory indices for dependency check are typedef'd and abstract'd. + - no-brainer refcounts for fi object, debug the mess. + - dump the header early in transaction, recreate fi before installing. 4.0.3 -> 4.0.4: diff --git a/build.c b/build.c index bd28126..792fdc7 100644 --- a/build.c +++ b/build.c @@ -17,8 +17,8 @@ /** */ static int checkSpec(rpmTransactionSet ts, Header h) - /*@globals fileSystem @*/ - /*@modifies ts, h, fileSystem @*/ + /*@globals fileSystem, internalState @*/ + /*@modifies ts, h, fileSystem, internalState @*/ { rpmDependencyConflict conflicts; int numConflicts; @@ -92,7 +92,8 @@ static int isSpecFile(const char * specfile) static int buildForTarget(rpmTransactionSet ts, const char * arg, BTA_t ba) /*@globals rpmGlobalMacroContext, fileSystem, internalState @*/ - /*@modifies ts, rpmGlobalMacroContext, fileSystem, internalState @*/ + /*@modifies ts, rpmGlobalMacroContext, + fileSystem, internalState @*/ { const char * passPhrase = ba->passPhrase; const char * cookie = ba->cookie; diff --git a/build/buildio.h b/build/buildio.h index e36ee7e..e25f64a 100644 --- a/build/buildio.h +++ b/build/buildio.h @@ -16,7 +16,7 @@ typedef /*@abstract@*/ struct cpioSourceArchive_s { unsigned int cpioArchiveSize; FD_t cpioFdIn; -/*@dependent@*/ TFI_t cpioList; + TFI_t cpioList; /*@only@*/ struct rpmlead * lead; /* XXX FIXME: exorcize lead/arch/os */ } * CSA_t; diff --git a/build/pack.c b/build/pack.c index a06dc40..347d4af 100644 --- a/build/pack.c +++ b/build/pack.c @@ -778,7 +778,9 @@ int packageBinaries(Spec spec) csa->cpioArchiveSize = 0; /*@-type@*/ /* LCL: function typedefs */ csa->cpioFdIn = fdNew("init (packageBinaries)"); - csa->cpioList = pkg->cpioList; + /*@-assignexpose -newreftrans@*/ +/*@i@*/ csa->cpioList = pkg->cpioList; + /*@=assignexpose =newreftrans@*/ rc = writeRPM(&pkg->header, fn, RPMLEAD_BINARY, csa, spec->passPhrase, NULL); @@ -817,7 +819,9 @@ int packageSources(Spec spec) csa->cpioArchiveSize = 0; /*@-type@*/ /* LCL: function typedefs */ csa->cpioFdIn = fdNew("init (packageSources)"); - csa->cpioList = spec->sourceCpioList; + /*@-assignexpose -newreftrans@*/ +/*@i@*/ csa->cpioList = spec->sourceCpioList; + /*@=assignexpose =newreftrans@*/ rc = writeRPM(&spec->sourceHeader, fn, RPMLEAD_SOURCE, csa, spec->passPhrase, &(spec->cookie)); diff --git a/build/rpmspec.h b/build/rpmspec.h index dfe5757..ed59ed2 100644 --- a/build/rpmspec.h +++ b/build/rpmspec.h @@ -124,8 +124,9 @@ struct SpecStruct { int numSources; int noSource; -/*@refcounted@*/ Header sourceHeader; -/*@owned@*/ void * sourceCpioList; +/*@refcounted@*/ + Header sourceHeader; + TFI_t sourceCpioList; /*@dependent@*/ /*@null@*/ MacroContext macros; @@ -141,9 +142,9 @@ struct SpecStruct { * The structure used to store values for a package. */ struct PackageStruct { -/*@refcounted@*/ Header header; - -/*@owned@*/ void * cpioList; +/*@refcounted@*/ + Header header; + TFI_t cpioList; /*@owned@*/ struct Source * icon; diff --git a/build/spec.c b/build/spec.c index bf7f2b4..6a7b4ae 100644 --- a/build/spec.c +++ b/build/spec.c @@ -16,6 +16,7 @@ extern int specedit; #define SKIPNONWHITE(_x){while(*(_x) &&!(xisspace(*_x) || *(_x) == ',')) (_x)++;} /*@access Header @*/ /* compared with NULL */ +/*@access TFI_t @*/ /* compared with NULL */ /** * @return NULL always @@ -159,10 +160,12 @@ Package freePackage(Package pkg) pkg->fileList = freeStringBuf(pkg->fileList); pkg->fileFile = _free(pkg->fileFile); if (pkg->cpioList) { - void * fi = pkg->cpioList; + TFI_t fi = pkg->cpioList; pkg->cpioList = NULL; -/*@i@*/ freeFi((TFI_t)fi); + freeFi(fi); + /*@-refcounttrans@*/ /* FIX: fi needs to be only */ fi = _free(fi); + /*@=refcounttrans@*/ } pkg->specialDoc = freeStringBuf(pkg->specialDoc); @@ -505,10 +508,12 @@ Spec freeSpec(Spec spec) spec->sourceHeader = headerFree(spec->sourceHeader); if (spec->sourceCpioList) { - void * fi = spec->sourceCpioList; + TFI_t fi = spec->sourceCpioList; spec->sourceCpioList = NULL; -/*@i@*/ freeFi(fi); + freeFi(fi); + /*@-refcounttrans@*/ /* FIX: fi needs to be only */ fi = _free(fi); + /*@=refcounttrans@*/ } spec->buildRestrictions = headerFree(spec->buildRestrictions); diff --git a/lib/depends.c b/lib/depends.c index d11ab21..e4e5b43 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -21,7 +21,15 @@ /*@access rpmdbMatchIterator@*/ /* XXX compared with NULL */ /*@access rpmTransactionSet@*/ /*@access rpmDependencyConflict@*/ + +/*@access availablePackage@*/ +/*@access availableIndexEntry@*/ +/*@access availableIndex@*/ +/*@access fileIndexEntry@*/ +/*@access dirInfo@*/ /*@access availableList@*/ +/*@access problemsSet@*/ +/*@access orderListIndex@*/ /*@unchecked@*/ static int _debug = 0; @@ -29,6 +37,9 @@ static int _debug = 0; /*@unchecked@*/ static int _cacheDependsRC = 1; +/*@unchecked@*/ +int _ts_debug = 0; + /** * Return formatted dependency string. * @param depend type of dependency ("R" == Requires, "C" == Conflcts) @@ -97,11 +108,6 @@ static /*@only@*/ const char *buildEVR(int_32 *e, const char *v, const char *r) } #endif -struct orderListIndex { - int alIndex; - int orIndex; -}; - /** * Destroy available item index. * @param al available list @@ -141,7 +147,7 @@ static void alFree(availableList al) /*@modifies al @*/ { HFD_t hfd = headerFreeData; - struct availablePackage * p; + availablePackage p; rpmRelocation * r; int i; @@ -197,8 +203,10 @@ static void alFree(availableList al) */ static int dirInfoCompare(const void * one, const void * two) /*@*/ { + /*@-castexpose@*/ const dirInfo a = (const dirInfo) one; const dirInfo b = (const dirInfo) two; + /*@=castexpose@*/ int lenchk = a->dirNameLen - b->dirNameLen; if (lenchk) @@ -219,7 +227,7 @@ alDelPackage(availableList al, int pkgNum) { HGE_t hge = (HGE_t)headerGetEntryMinMemory; HFD_t hfd = headerFreeData; - struct availablePackage * p; + availablePackage p; /*@-nullptrarith@*/ /* FIX: al->list might be NULL */ p = al->list + pkgNum; @@ -251,7 +259,8 @@ fprintf(stderr, "*** del %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi int_32 numDirs; rpmTagType dnt; int dirNum; - struct dirInfo_s dirNeedle; + dirInfo dirNeedle = + memset(alloca(sizeof(*dirNeedle)), 0, sizeof(*dirNeedle)); dirInfo dirMatch; int last; int i, xx; @@ -262,10 +271,10 @@ fprintf(stderr, "*** del %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi if (al->dirs != NULL) for (dirNum = al->numDirs - 1; dirNum >= 0; dirNum--) { - dirNeedle.dirName = (char *) dirNames[dirNum]; - dirNeedle.dirNameLen = strlen(dirNames[dirNum]); - dirMatch = bsearch(&dirNeedle, al->dirs, al->numDirs, - sizeof(dirNeedle), dirInfoCompare); + dirNeedle->dirName = (char *) dirNames[dirNum]; + dirNeedle->dirNameLen = strlen(dirNames[dirNum]); + dirMatch = bsearch(dirNeedle, al->dirs, al->numDirs, + sizeof(*dirNeedle), dirInfoCompare); if (dirMatch == NULL) continue; last = dirMatch->numFiles; @@ -318,7 +327,7 @@ fprintf(stderr, "*** del %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi * @param relocs package file relocations * @return available package pointer */ -static /*@exposed@*/ struct availablePackage * +static /*@exposed@*/ availablePackage alAddPackage(availableList al, int pkgNum, Header h, /*@null@*/ /*@dependent@*/ const void * key, /*@null@*/ FD_t fd, /*@null@*/ rpmRelocation * relocs) @@ -327,7 +336,7 @@ alAddPackage(availableList al, int pkgNum, HGE_t hge = (HGE_t)headerGetEntryMinMemory; HFD_t hfd = headerFreeData; rpmTagType dnt, bnt; - struct availablePackage * p; + availablePackage p; int i, xx; uint_32 multiLibMask = 0; uint_32 * pp = NULL; @@ -418,7 +427,8 @@ fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi int_32 numDirs; uint_32 * fileFlags = NULL; int * dirMapping; - struct dirInfo_s dirNeedle; + dirInfo dirNeedle = + memset(alloca(sizeof(*dirNeedle)), 0, sizeof(*dirNeedle)); dirInfo dirMatch; int first, last, fileNum, dirNum; int origNumDirs; @@ -438,10 +448,10 @@ fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi origNumDirs = al->numDirs; for (dirNum = 0; dirNum < numDirs; dirNum++) { - dirNeedle.dirName = (char *) dirNames[dirNum]; - dirNeedle.dirNameLen = strlen(dirNames[dirNum]); - dirMatch = bsearch(&dirNeedle, al->dirs, origNumDirs, - sizeof(dirNeedle), dirInfoCompare); + dirNeedle->dirName = (char *) dirNames[dirNum]; + dirNeedle->dirNameLen = strlen(dirNames[dirNum]); + dirMatch = bsearch(dirNeedle, al->dirs, origNumDirs, + sizeof(*dirNeedle), dirInfoCompare); if (dirMatch) { dirMapping[dirNum] = dirMatch - al->dirs; } else { @@ -469,8 +479,10 @@ fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi sizeof(*dirMatch->files)); if (p->baseNames != NULL) /* XXX can't happen */ for (fileNum = first; fileNum <= last; fileNum++) { + /*@-assignexpose@*/ dirMatch->files[dirMatch->numFiles].baseName = p->baseNames[fileNum]; + /*@=assignexpose@*/ dirMatch->files[dirMatch->numFiles].pkgNum = pkgNum; dirMatch->files[dirMatch->numFiles].fileFlags = fileFlags[fileNum]; @@ -478,12 +490,15 @@ fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi } } + /* XXX should we realloc to smaller size? */ if (origNumDirs + al->numDirs) - qsort(al->dirs, al->numDirs, sizeof(dirNeedle), dirInfoCompare); + qsort(al->dirs, al->numDirs, sizeof(*al->dirs), dirInfoCompare); } + /*@-assignexpose@*/ p->key = key; + /*@=assignexpose@*/ /*@-type@*/ /* FIX: cast? */ p->fd = (fd != NULL ? fdLink(fd, "alAddPackage") : NULL); /*@=type@*/ @@ -518,8 +533,10 @@ fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, p->name, p->versi */ static int indexcmp(const void * one, const void * two) /*@*/ { - const struct availableIndexEntry * a = one; - const struct availableIndexEntry * b = two; + /*@-castexpose@*/ + const availableIndexEntry a = (const availableIndexEntry) one; + const availableIndexEntry b = (const availableIndexEntry) two; + /*@=castexpose@*/ int lenchk = a->entryLen - b->entryLen; if (lenchk) @@ -535,7 +552,7 @@ static int indexcmp(const void * one, const void * two) /*@*/ static void alMakeIndex(availableList al) /*@modifies al @*/ { - struct availableIndex * ai = &al->index; + availableIndex ai = &al->index; int i, j, k; if (ai->size || al->list == NULL) return; @@ -558,7 +575,9 @@ static void alMakeIndex(availableList al) } ai->index[k].package = al->list + i; + /*@-assignexpose@*/ ai->index[k].entry = al->list[i].provides[j]; + /*@=assignexpose@*/ ai->index[k].entryLen = strlen(al->list[i].provides[j]); ai->index[k].type = IET_PROVIDES; k++; @@ -784,19 +803,26 @@ int headerMatchesDepFlags(Header h, return rpmRangesOverlap(name, pkgEVR, pkgFlags, reqName, reqEVR, reqFlags); } -rpmTransactionSet rpmtsLink(rpmTransactionSet ts) -{ - ts->nrefs++; - /*@-refcounttrans@*/ return ts; /*@=refcounttrans@*/ -} - -rpmTransactionSet rpmtsUnlink(rpmTransactionSet ts) +rpmTransactionSet XrpmtsUnlink(rpmTransactionSet ts, const char * msg, const char * fn, unsigned ln) { +/*@-modfilesystem@*/ +if (_ts_debug) +fprintf(stderr, "--> ts %p -- %d %s at %s:%u\n", ts, ts->nrefs, msg, fn, ln); +/*@=modfilesystem@*/ ts->nrefs--; return NULL; } +rpmTransactionSet XrpmtsLink(rpmTransactionSet ts, const char * msg, const char * fn, unsigned ln) +{ + ts->nrefs++; /*@-modfilesystem@*/ +if (_ts_debug) +fprintf(stderr, "--> ts %p ++ %d %s at %s:%u\n", ts, ts->nrefs, msg, fn, ln); +/*@=modfilesystem@*/ + /*@-refcounttrans@*/ return ts; /*@=refcounttrans@*/ +} + int rpmtsCloseDB(rpmTransactionSet ts) { int rc = 0; @@ -812,10 +838,12 @@ int rpmtsOpenDB(rpmTransactionSet ts, int dbmode) { int rc = 0; - if (ts->rpmdb != NULL) { - if ((rc = rpmtsCloseDB(ts)) != 0) - return rc; - } + if (ts->rpmdb != NULL && ts->dbmode == dbmode) + return 0; + + (void) rpmtsCloseDB(ts); + + /* XXX there's a lock race here. */ ts->dbmode = dbmode; rc = rpmdbOpen(ts->rootDir, &ts->rpmdb, ts->dbmode, 0644); @@ -854,7 +882,7 @@ rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * rootDir) ts->di = NULL; if (db != NULL) { /*@-assignexpose@*/ - ts->rpmdb = rpmdbLink(db); + ts->rpmdb = rpmdbLink(db, "tsCreate"); /*@=assignexpose@*/ ts->dbmode = db->db_mode; } else { @@ -897,7 +925,9 @@ rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * rootDir) ts->sig = NULL; ts->dig = NULL; - return ts; + ts->nrefs = 0; + + return rpmtsLink(ts, "tsCreate"); } /** @@ -983,7 +1013,7 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, FD_t fd, const char * addNVR = hNVRstr(h, &name); const char * pkgNVR = NULL; rpmTagType ont, ovt; - struct availablePackage * p; + availablePackage p; int count; const char ** obsoletes; int alNum; @@ -1131,7 +1161,7 @@ exit: void rpmtransAvailablePackage(rpmTransactionSet ts, Header h, const void * key) { - struct availablePackage * al; + availablePackage al; al = alAddPackage(&ts->availablePackages, -1, h, key, NULL, NULL); } @@ -1154,7 +1184,13 @@ void rpmtransClean(rpmTransactionSet ts) rpmTransactionSet rpmtransFree(rpmTransactionSet ts) { - if (ts && --ts->nrefs > 0) { + if (ts) { + + (void) rpmtsUnlink(ts, "tsCreate"); + + /*@-usereleased@*/ + if (ts->nrefs > 0) + return NULL; alFree(&ts->addedPackages); alFree(&ts->availablePackages); @@ -1176,6 +1212,7 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts) (void) rpmtsCloseDB(ts); /*@-refcounttrans@*/ ts = _free(ts); /*@=refcounttrans@*/ + /*@=usereleased@*/ } return NULL; } @@ -1207,7 +1244,7 @@ rpmDependencyConflict rpmdepFreeConflicts(rpmDependencyConflict conflicts, * @param fileName file name to search for * @return available package pointer */ -static /*@only@*/ /*@null@*/ struct availablePackage ** +static /*@only@*/ /*@null@*/ availablePackage * alAllFileSatisfiesDepend(const availableList al, const char * keyType, const char * fileName) /*@*/ @@ -1215,9 +1252,10 @@ alAllFileSatisfiesDepend(const availableList al, int i, found = 0; const char * dirName; const char * baseName; - struct dirInfo_s dirNeedle; + dirInfo dirNeedle = + memset(alloca(sizeof(*dirNeedle)), 0, sizeof(*dirNeedle)); dirInfo dirMatch; - struct availablePackage ** ret = NULL; + availablePackage * ret = NULL; /* Solaris 2.6 bsearch sucks down on this. */ if (al->numDirs == 0 || al->dirs == NULL || al->list == NULL) @@ -1231,15 +1269,15 @@ alAllFileSatisfiesDepend(const availableList al, } } - dirNeedle.dirName = (char *) dirName; - dirNeedle.dirNameLen = strlen(dirName); - dirMatch = bsearch(&dirNeedle, al->dirs, al->numDirs, - sizeof(dirNeedle), dirInfoCompare); + dirNeedle->dirName = (char *) dirName; + dirNeedle->dirNameLen = strlen(dirName); + dirMatch = bsearch(dirNeedle, al->dirs, al->numDirs, + sizeof(*dirNeedle), dirInfoCompare); if (dirMatch == NULL) goto exit; /* rewind to the first match */ - while (dirMatch > al->dirs && dirInfoCompare(dirMatch-1, &dirNeedle) == 0) + while (dirMatch > al->dirs && dirInfoCompare(dirMatch-1, dirNeedle) == 0) dirMatch--; if ((baseName = strrchr(fileName, '/')) == NULL) @@ -1248,7 +1286,7 @@ alAllFileSatisfiesDepend(const availableList al, for (found = 0, ret = NULL; dirMatch <= al->dirs + al->numDirs && - dirInfoCompare(dirMatch, &dirNeedle) == 0; + dirInfoCompare(dirMatch, dirNeedle) == 0; dirMatch++) { /* XXX FIXME: these file lists should be sorted and bsearched */ @@ -1293,14 +1331,13 @@ exit: * @param fileName file name to search for * @return available package pointer */ -/*@unused@*/ static /*@dependent@*/ /*@null@*/ struct availablePackage * +/*@unused@*/ static /*@dependent@*/ /*@null@*/ availablePackage alFileSatisfiesDepend(const availableList al, const char * keyType, const char * fileName) /*@*/ { - struct availablePackage * ret; - struct availablePackage ** tmp = - alAllFileSatisfiesDepend(al, keyType, fileName); + availablePackage ret; + availablePackage * tmp = alAllFileSatisfiesDepend(al, keyType, fileName); if (tmp) { ret = tmp[0]; @@ -1321,14 +1358,16 @@ alFileSatisfiesDepend(const availableList al, * @param keyFlags dependency logical range qualifiers * @return available package pointer */ -static /*@only@*/ /*@null@*/ struct availablePackage ** +static /*@only@*/ /*@null@*/ availablePackage * alAllSatisfiesDepend(const availableList al, const char * keyType, const char * keyDepend, const char * keyName, const char * keyEVR, int keyFlags) /*@*/ { - struct availableIndexEntry needle, * match; - struct availablePackage * p, ** ret = NULL; + availableIndexEntry needle = + memset(alloca(sizeof(*needle)), 0, sizeof(*needle)); + availableIndexEntry match; + availablePackage p, * ret = NULL; int i, rc, found; if (*keyName == '/') { @@ -1340,20 +1379,24 @@ alAllSatisfiesDepend(const availableList al, if (!al->index.size || al->index.index == NULL) return NULL; - needle.entry = keyName; - needle.entryLen = strlen(keyName); - match = bsearch(&needle, al->index.index, al->index.size, + /*@-assignexpose@*/ + /*@-temptrans@*/ + needle->entry = keyName; + /*@=temptrans@*/ + needle->entryLen = strlen(keyName); + match = bsearch(needle, al->index.index, al->index.size, sizeof(*al->index.index), indexcmp); + /*@=assignexpose@*/ if (match == NULL) return NULL; /* rewind to the first match */ - while (match > al->index.index && indexcmp(match-1,&needle) == 0) + while (match > al->index.index && indexcmp(match-1, needle) == 0) match--; for (ret = NULL, found = 0; match <= al->index.index + al->index.size && - indexcmp(match,&needle) == 0; + indexcmp(match, needle) == 0; match++) { @@ -1408,14 +1451,14 @@ alAllSatisfiesDepend(const availableList al, * @param keyFlags dependency logical range qualifiers * @return available package pointer */ -static inline /*@only@*/ /*@null@*/ struct availablePackage * +static inline /*@only@*/ /*@null@*/ availablePackage alSatisfiesDepend(const availableList al, const char * keyType, const char * keyDepend, const char * keyName, const char * keyEVR, int keyFlags) /*@*/ { - struct availablePackage * ret; - struct availablePackage ** tmp = + availablePackage ret; + availablePackage * tmp = alAllSatisfiesDepend(al, keyType, keyDepend, keyName, keyEVR, keyFlags); if (tmp) { @@ -1441,7 +1484,7 @@ alSatisfiesDepend(const availableList al, static int unsatisfiedDepend(rpmTransactionSet ts, const char * keyType, const char * keyDepend, const char * keyName, const char * keyEVR, int keyFlags, - /*@null@*/ /*@out@*/ struct availablePackage *** suggestion) + /*@null@*/ /*@out@*/ availablePackage ** suggestion) /*@globals _cacheDependsRC, fileSystem @*/ /*@modifies ts, *suggestion, _cacheDependsRC, fileSystem @*/ { @@ -1643,7 +1686,7 @@ static int checkPackageDeps(rpmTransactionSet ts, problemsSet psp, rpmTagType type; int i, rc, xx; int ourrc = 0; - struct availablePackage ** suggestion; + availablePackage * suggestion; xx = headerNVR(h, &name, &version, &release); @@ -1906,8 +1949,8 @@ static struct badDeps_s { { NULL, NULL } }; -static int ignoreDep(const struct availablePackage * p, - const struct availablePackage * q) +static int ignoreDep(const availablePackage p, + const availablePackage q) /*@*/ { struct badDeps_s * bdp = badDeps; @@ -1927,18 +1970,20 @@ static int ignoreDep(const struct availablePackage * p, * @param q predecessor */ static void markLoop(/*@special@*/ struct tsortInfo * tsi, - struct availablePackage * q) + availablePackage q) /*@globals internalState @*/ /*@uses tsi @*/ /*@modifies internalState @*/ { - struct availablePackage * p; + availablePackage p; while (tsi != NULL && (p = tsi->tsi_suc) != NULL) { tsi = tsi->tsi_next; if (p->tsi.tsi_pkg != NULL) continue; + /*@-assignexpose@*/ p->tsi.tsi_pkg = q; + /*@=assignexpose@*/ if (p->tsi.tsi_next != NULL) markLoop(p->tsi.tsi_next, p); } @@ -1977,7 +2022,7 @@ static inline /*@observer@*/ const char * const identifyDepend(int_32 f) * @return (possibly NULL) formatted "q <- p" releation (malloc'ed) */ static /*@owned@*/ /*@null@*/ const char * -zapRelation(struct availablePackage * q, struct availablePackage * p, +zapRelation(availablePackage q, availablePackage p, int zap, /*@in@*/ /*@out@*/ int * nzaps) /*@modifies q, p, *nzaps @*/ { @@ -2038,10 +2083,10 @@ zapRelation(struct availablePackage * q, struct availablePackage * p, * @return 0 always */ static inline int addRelation( const rpmTransactionSet ts, - struct availablePackage * p, unsigned char * selected, int j) - /*@modifies p->tsi.tsi_u.count, p->depth, *selected @*/ + availablePackage p, unsigned char * selected, int j) + /*@modifies p, *selected @*/ { - struct availablePackage * q; + availablePackage q; struct tsortInfo * tsi; int matchNum; @@ -2094,8 +2139,10 @@ static inline int addRelation( const rpmTransactionSet ts, */ static int orderListIndexCmp(const void * one, const void * two) /*@*/ { - int a = ((const struct orderListIndex *)one)->alIndex; - int b = ((const struct orderListIndex *)two)->alIndex; + /*@-castexpose@*/ + int a = ((const orderListIndex)one)->alIndex; + int b = ((const orderListIndex)two)->alIndex; + /*@=castexpose@*/ return (a - b); } @@ -2105,12 +2152,12 @@ static int orderListIndexCmp(const void * one, const void * two) /*@*/ * @retval qp address of first element * @retval rp address of last element */ -static void addQ(struct availablePackage * p, - /*@in@*/ /*@out@*/ struct availablePackage ** qp, - /*@in@*/ /*@out@*/ struct availablePackage ** rp) - /*@modifies p->tsi, *qp, *rp @*/ +static void addQ(availablePackage p, + /*@in@*/ /*@out@*/ availablePackage * qp, + /*@in@*/ /*@out@*/ availablePackage * rp) + /*@modifies p, *qp, *rp @*/ { - struct availablePackage *q, *qprev; + availablePackage q, qprev; if ((*rp) == NULL) { /* 1st element */ (*rp) = (*qp) = p; @@ -2120,6 +2167,7 @@ static void addQ(struct availablePackage * p, if (q->tsi.tsi_qcnt <= p->tsi.tsi_qcnt) break; } + /*@-assignexpose@*/ if (qprev == NULL) { /* insert at beginning of list */ p->tsi.tsi_suc = q; (*qp) = p; /* new head */ @@ -2130,15 +2178,16 @@ static void addQ(struct availablePackage * p, p->tsi.tsi_suc = q; qprev->tsi.tsi_suc = p; } + /*@=assignexpose@*/ } int rpmdepOrder(rpmTransactionSet ts) { int npkgs = ts->addedPackages.size; int chainsaw = ts->transFlags & RPMTRANS_FLAG_CHAINSAW; - struct availablePackage * p; - struct availablePackage * q; - struct availablePackage * r; + availablePackage p; + availablePackage q; + availablePackage r; struct tsortInfo * tsi; struct tsortInfo * tsi_next; int * ordering = alloca(sizeof(*ordering) * (npkgs + 1)); @@ -2147,7 +2196,7 @@ int rpmdepOrder(rpmTransactionSet ts) int loopcheck; struct transactionElement * newOrder; int newOrderCount = 0; - struct orderListIndex * orderList; + orderListIndex orderList; int nrescans = 10; int _printed = 0; int qlen; @@ -2379,7 +2428,8 @@ rescan: newOrder = xcalloc(ts->orderCount, sizeof(*newOrder)); for (i = 0, newOrderCount = 0; i < orderingCount; i++) { - struct orderListIndex * needle, key; + struct orderListIndex_s key; + orderListIndex needle; key.alIndex = ordering[i]; needle = bsearch(&key, orderList, npkgs, sizeof(key),orderListIndexCmp); @@ -2451,7 +2501,7 @@ int rpmdepCheck(rpmTransactionSet ts, HFD_t hfd = headerFreeData; rpmdbMatchIterator mi = NULL; Header h = NULL; - struct availablePackage * p; + availablePackage p; problemsSet ps = NULL; int npkgs; int closeatexit = 0; diff --git a/lib/depends.h b/lib/depends.h index 868c075..5bfd17d 100644 --- a/lib/depends.h +++ b/lib/depends.h @@ -9,6 +9,20 @@ #include #include +typedef /*@abstract@*/ struct availablePackage_s * availablePackage; +typedef /*@abstract@*/ struct availableIndexEntry_s * availableIndexEntry; +typedef /*@abstract@*/ struct availableIndex_s * availableIndex; +typedef /*@abstract@*/ struct fileIndexEntry_s * fileIndexEntry; +typedef /*@abstract@*/ struct dirInfo_s * dirInfo; +typedef /*@abstract@*/ struct availableList_s * availableList; +typedef /*@abstract@*/ struct problemsSet_s * problemsSet; +typedef /*@abstract@*/ struct orderListIndex_s * orderListIndex; + +/*@unchecked@*/ +/*@-exportlocal@*/ +extern int _ts_debug; +/*@=exportlocal@*/ + /** \ingroup rpmdep * Dependncy ordering information. */ @@ -16,12 +30,12 @@ struct tsortInfo { union { int count; - /*@kept@*/ /*@null@*/ struct availablePackage * suc; + /*@kept@*/ /*@null@*/ availablePackage suc; } tsi_u; #define tsi_count tsi_u.count #define tsi_suc tsi_u.suc /*@owned@*/ /*@null@*/ struct tsortInfo * tsi_next; -/*@kept@*/ /*@null@*/ struct availablePackage * tsi_pkg; +/*@kept@*/ /*@null@*/ availablePackage tsi_pkg; int tsi_reqx; int tsi_qcnt; } ; @@ -30,7 +44,7 @@ struct tsortInfo { /** \ingroup rpmdep * Info about a single package to be installed. */ -struct availablePackage { +struct availablePackage_s { Header h; /*!< Package header. */ /*@dependent@*/ const char * name; /*!< Header name. */ /*@dependent@*/ const char * version; /*!< Header version. */ @@ -58,8 +72,8 @@ struct availablePackage { /** \ingroup rpmdep * A single available item (e.g. a Provides: dependency). */ -struct availableIndexEntry { -/*@dependent@*/ struct availablePackage * package; /*!< Containing package. */ +struct availableIndexEntry_s { +/*@dependent@*/ availablePackage package; /*!< Containing package. */ /*@dependent@*/ const char * entry; /*!< Available item name. */ size_t entryLen; /*!< No. of bytes in name. */ enum indexEntryType { @@ -70,15 +84,15 @@ struct availableIndexEntry { /** \ingroup rpmdep * Index of all available items. */ -struct availableIndex { -/*@null@*/ struct availableIndexEntry * index; /*!< Array of available items. */ +struct availableIndex_s { +/*@null@*/ availableIndexEntry index; /*!< Array of available items. */ int size; /*!< No. of available items. */ } ; /** \ingroup rpmdep * A file to be installed/removed. */ -struct fileIndexEntry { +struct fileIndexEntry_s { int pkgNum; /*!< Containing package number. */ int fileFlags; /* MULTILIB */ /*@dependent@*/ /*@null@*/ const char * baseName; /*!< File basename. */ @@ -87,25 +101,31 @@ struct fileIndexEntry { /** \ingroup rpmdep * A directory to be installed/removed. */ -typedef struct dirInfo_s { +struct dirInfo_s { /*@owned@*/ const char * dirName; /*!< Directory path (+ trailing '/'). */ int dirNameLen; /*!< No. bytes in directory path. */ -/*@owned@*/ struct fileIndexEntry * files; /*!< Array of files in directory. */ +/*@owned@*/ fileIndexEntry files; /*!< Array of files in directory. */ int numFiles; /*!< No. files in directory. */ -} * dirInfo ; +} ; /** \ingroup rpmdep * Set of available packages, items, and directories. */ -typedef /*@abstract@*/ struct availableList_s { -/*@owned@*/ /*@null@*/ struct availablePackage * list; /*!< Set of packages. */ - struct availableIndex index; /*!< Set of available items. */ +struct availableList_s { +/*@owned@*/ /*@null@*/ availablePackage list; /*!< Set of packages. */ + struct availableIndex_s index; /*!< Set of available items. */ int delta; /*!< Delta for pkg list reallocation. */ int size; /*!< No. of pkgs in list. */ int alloced; /*!< No. of pkgs allocated for list. */ int numDirs; /*!< No. of directories. */ /*@owned@*/ /*@null@*/ dirInfo dirs; /*!< Set of directories. */ -} * availableList; +} ; + +struct orderListIndex_s { + int alIndex; + int orIndex; +}; + /** \ingroup rpmdep * A single package instance to be installed/removed atomically. @@ -187,11 +207,11 @@ struct rpmTransactionSet_s { /** \ingroup rpmdep * Problems encountered while checking dependencies. */ -typedef /*@abstract@*/ struct problemsSet_s { +struct problemsSet_s { rpmDependencyConflict problems; /*!< Problems encountered. */ int num; /*!< No. of problems found. */ int alloced; /*!< No. of problems allocated. */ -} * problemsSet; +} ; #ifdef __cplusplus extern "C" { diff --git a/lib/fsm.c b/lib/fsm.c index e48876d..41408b0 100644 --- a/lib/fsm.c +++ b/lib/fsm.c @@ -15,6 +15,8 @@ /*@access FSMI_t @*/ /*@access FSM_t @*/ +/*@access availablePackage@*/ /* XXX fi->ap->key on callbacks */ + #define alloca_strdup(_s) strcpy(alloca(strlen(_s)+1), (_s)) /*@unchecked@*/ @@ -36,7 +38,9 @@ rpmTransactionSet fsmGetTs(const FSM_t fsm) { TFI_t fsmGetFi(const FSM_t fsm) { const FSMI_t iter = fsm->iter; + /*@-compdef -refcounttrans -retexpose -usereleased @*/ return (iter ? iter->fi : NULL); + /*@=compdef =refcounttrans =retexpose =usereleased @*/ } #define SUFFIX_RPMORIG ".rpmorig" @@ -88,8 +92,10 @@ static /*@null@*/ void * mapFreeIterator(/*@only@*//*@null@*/ void * p) /*@*/ { FSMI_t iter = p; - if (iter) - iter->ts = rpmtsUnlink(iter->ts); + if (iter) { + iter->ts = rpmtsUnlink(iter->ts, "mapIterator"); + iter->fi = rpmfiUnlink(iter->fi, "mapIterator"); + } return _free(p); } @@ -100,15 +106,14 @@ static /*@null@*/ void * mapFreeIterator(/*@only@*//*@null@*/ void * p) * @return file info iterator */ static void * -mapInitIterator(rpmTransactionSet ts, /*@kept@*/ const void * b) - /*@modifies ts @*/ +mapInitIterator(rpmTransactionSet ts, TFI_t fi) + /*@modifies ts, fi @*/ { - TFI_t fi = (void *)b; FSMI_t iter = NULL; iter = xcalloc(1, sizeof(*iter)); - iter->ts = rpmtsLink(ts); - iter->fi = fi; + iter->ts = rpmtsLink(ts, "mapIterator"); + iter->fi = rpmfiLink(fi, "mapIterator"); iter->reverse = (fi->type == TR_REMOVED && fi->action != FA_COPYOUT); iter->i = (iter->reverse ? (fi->fc - 1) : 0); iter->isave = iter->i; @@ -189,7 +194,7 @@ static int mapFind(/*@null@*/ FSMI_t iter, const char * fsmPath) * Directory name iterator. */ typedef struct dnli_s { -/*@dependent@*/ TFI_t fi; + TFI_t fi; /*@only@*/ /*@null@*/ char * active; int reverse; int isave; @@ -233,6 +238,7 @@ static inline int dnlIndex(const DNLI_t dnli) * @param reverse traverse directory names in reverse order? * @return directory name iterator */ +/*@-usereleased@*/ static /*@only@*/ void * dnlInitIterator(/*@special@*/ const FSM_t fsm, int reverse) /*@uses fsm->iter @*/ @@ -247,7 +253,9 @@ static /*@only@*/ void * dnlInitIterator(/*@special@*/ const FSM_t fsm, dnli = xcalloc(1, sizeof(*dnli)); dnli->fi = fi; dnli->reverse = reverse; + /*@-branchstate@*/ dnli->i = (reverse ? fi->dc : 0); + /*@=branchstate@*/ if (fi->dc) { dnli->active = xcalloc(fi->dc, sizeof(*dnli->active)); @@ -307,6 +315,7 @@ static /*@only@*/ void * dnlInitIterator(/*@special@*/ const FSM_t fsm, } return dnli; } +/*@=usereleased@*/ /** \ingroup payload * Return next directory name (from file info). diff --git a/lib/fsm.h b/lib/fsm.h index a3b7e0b..6907032 100644 --- a/lib/fsm.h +++ b/lib/fsm.h @@ -106,7 +106,6 @@ struct hardLink { */ struct fsmIterator_s { rpmTransactionSet ts; /*!< transaction set. */ -/*@kept@*/ /*@exposed@*/ TFI_t fi; /*!< transaction element file info. */ int reverse; /*!< reversed traversal? */ int isave; /*!< last returned iterator index. */ @@ -214,12 +213,12 @@ extern "C" { */ int fsmSetup(FSM_t fsm, fileStage goal, const rpmTransactionSet ts, - /*@kept@*/ const TFI_t fi, + const TFI_t fi, FD_t cfd, /*@out@*/ unsigned int * archiveSize, /*@out@*/ const char ** failedFile) /*@globals fileSystem @*/ - /*@modifies fsm, ts, *archiveSize, *failedFile, fileSystem @*/; + /*@modifies fsm, ts, fi, *archiveSize, *failedFile, fileSystem @*/; /** * Clean file state machine. @@ -244,7 +243,7 @@ rpmTransactionSet fsmGetTs(const FSM_t fsm) * @param fsm file state machine data * @return transaction element file info */ -/*@kept@*/ /*@exposed@*/ TFI_t fsmGetFi(/*@partial@*/const FSM_t fsm) +TFI_t fsmGetFi(/*@partial@*/ const FSM_t fsm) /*@*/; /** diff --git a/lib/psm.c b/lib/psm.c index ec5b921..fe76fc0 100644 --- a/lib/psm.c +++ b/lib/psm.c @@ -17,6 +17,9 @@ #include "rpmdb.h" /* XXX for db_chrootDone */ #include "debug.h" +/*@unchecked@*/ +int _fi_debug = 0; + /*@access Header @*/ /* compared with NULL */ /*@access rpmdbMatchIterator @*/ /* compared with NULL */ /*@access FSM_t @*/ /* compared with NULL */ @@ -29,6 +32,8 @@ /*@access rpmProblem@*/ /*@access PSM_t @*/ +/*@access availablePackage@*/ + /*@-redecl -declundef -exportheadervar@*/ /*@unchecked@*/ extern const char * chroot_prefix; @@ -82,7 +87,7 @@ rpmProblemSet psCreate(void) } void psAppend(rpmProblemSet probs, rpmProblemType type, - const struct availablePackage * alp, + const availablePackage alp, const char * dn, const char * bn, Header altH, unsigned long ulong1) { @@ -176,7 +181,7 @@ fileTypes whatis(uint_16 mode) #define alloca_strdup(_s) strcpy(alloca(strlen(_s)+1), (_s)) Header relocateFileList(const rpmTransactionSet ts, TFI_t fi, - struct availablePackage * alp, + availablePackage alp, Header origH, fileAction * actions) { HGE_t hge = fi->hge; @@ -594,6 +599,26 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi, return h; } +TFI_t XrpmfiUnlink(TFI_t fi, const char * msg, const char * fn, unsigned ln) +{ +/*@-modfilesys@*/ +if (_fi_debug) +fprintf(stderr, "--> fi %p -- %d %s at %s:%u\n", fi, fi->nrefs, msg, fn, ln); +/*@=modfilesys@*/ + fi->nrefs--; + return NULL; +} + +TFI_t XrpmfiLink(TFI_t fi, const char * msg, const char * fn, unsigned ln) +{ + fi->nrefs++; +/*@-modfilesys@*/ +if (_fi_debug) +fprintf(stderr, "--> fi %p ++ %d %s at %s:%u\n", fi, fi->nrefs, msg, fn, ln); +/*@=modfilesys@*/ + /*@-refcounttrans@*/ return fi; /*@=refcounttrans@*/ +} + void loadFi(const rpmTransactionSet ts, TFI_t fi, Header h, int scareMem) { HGE_t hge; @@ -658,6 +683,7 @@ void loadFi(const rpmTransactionSet ts, TFI_t fi, Header h, int scareMem) if (fi->actions == NULL) fi->actions = xcalloc(fi->fc, sizeof(*fi->actions)); + fi->scareMem = scareMem; switch (fi->type) { case TR_ADDED: fi->mapflags = @@ -679,8 +705,6 @@ void loadFi(const rpmTransactionSet ts, TFI_t fi, Header h, int scareMem) } if (!scareMem) { - -fprintf(stderr, "*** %s-%s-%s scareMem\n", fi->name, fi->version, fi->release); fi->fmtimes = memcpy(xmalloc(fi->fc * sizeof(*fi->fmtimes)), fi->fmtimes, fi->fc * sizeof(*fi->fmtimes)); fi->frdevs = memcpy(xmalloc(fi->fc * sizeof(*fi->frdevs)), @@ -750,33 +774,9 @@ void freeFi(TFI_t fi) { HFD_t hfd = (fi->hfd ? fi->hfd : headerFreeData); - fi->name = _free(fi->name); - fi->version = _free(fi->version); - fi->release = _free(fi->release); - fi->actions = _free(fi->actions); - fi->replacedSizes = _free(fi->replacedSizes); - fi->replaced = _free(fi->replaced); - - fi->bnl = hfd(fi->bnl, -1); - fi->dnl = hfd(fi->dnl, -1); - fi->obnl = hfd(fi->obnl, -1); - fi->odnl = hfd(fi->odnl, -1); - fi->flinks = hfd(fi->flinks, -1); - fi->fmd5s = hfd(fi->fmd5s, -1); - fi->fuser = hfd(fi->fuser, -1); - fi->fgroup = hfd(fi->fgroup, -1); - fi->flangs = hfd(fi->flangs, -1); - - fi->apath = _free(fi->apath); - fi->fuids = _free(fi->fuids); - fi->fgids = _free(fi->fgids); - fi->fmapflags = _free(fi->fmapflags); - - fi->fsm = freeFSM(fi->fsm); - switch (fi->type) { case TR_ADDED: - if (fi->h == NULL) { + if (!fi->scareMem) { fi->fmtimes = hfd(fi->fmtimes, -1); fi->frdevs = hfd(fi->frdevs, -1); fi->fsizes = hfd(fi->fsizes, -1); @@ -795,6 +795,30 @@ void freeFi(TFI_t fi) break; } + fi->fsm = freeFSM(fi->fsm); + + fi->apath = _free(fi->apath); + fi->fuids = _free(fi->fuids); + fi->fgids = _free(fi->fgids); + fi->fmapflags = _free(fi->fmapflags); + + fi->bnl = hfd(fi->bnl, -1); + fi->dnl = hfd(fi->dnl, -1); + fi->obnl = hfd(fi->obnl, -1); + fi->odnl = hfd(fi->odnl, -1); + fi->flinks = hfd(fi->flinks, -1); + fi->fmd5s = hfd(fi->fmd5s, -1); + fi->fuser = hfd(fi->fuser, -1); + fi->fgroup = hfd(fi->fgroup, -1); + fi->flangs = hfd(fi->flangs, -1); + + fi->name = _free(fi->name); + fi->version = _free(fi->version); + fi->release = _free(fi->release); + fi->actions = _free(fi->actions); + fi->replacedSizes = _free(fi->replacedSizes); + fi->replaced = _free(fi->replaced); + fi->h = headerFree(fi->h); /*@-nullstate@*/ /* FIX: fi->{name,version,release,actions,...,h} NULL */ @@ -1236,7 +1260,7 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts, memset(psm, 0, sizeof(*psm)); /*@-assignexpose@*/ - psm->ts = rpmtsLink(ts); + psm->ts = rpmtsLink(ts, "InstallSourcePackage"); psm->fi = fi; /*@=assignexpose@*/ @@ -1354,10 +1378,12 @@ exit: if (fi) { freeFi(fi); + /*@-refcounttrans@*/ /* FIX: fi needs to be only */ fi = _free(fi); + /*@=refcounttrans@*/ } - psm->ts = rpmtsUnlink(ts); + psm->ts = rpmtsUnlink(ts, "InstallSourcePackage"); return rc; } @@ -2174,7 +2200,7 @@ assert(psm->mi == NULL); if (ts->transFlags & RPMTRANS_FLAG_TEST) break; if (psm->goal == PSM_PKGINSTALL) { - struct availablePackage * alp = fi->ap; + availablePackage alp = fi->ap; int i; if (fi->fc <= 0) break; diff --git a/lib/psm.h b/lib/psm.h index 57385cd..2f8034a 100644 --- a/lib/psm.h +++ b/lib/psm.h @@ -9,6 +9,11 @@ #include "fsm.h" #include "depends.h" +/*@unchecked@*/ +/*@-exportlocal@*/ +extern int _fi_debug; +/*@=exportlocal@*/ + /** */ struct sharedFileInfo { @@ -75,8 +80,11 @@ struct transactionFileInfo_s { #define TFIMAGIC 0x09697923 /*@owned@*/ FSM_t fsm; /*!< File state machine data. */ + int scareMem; /*!< Keep header? */ +/*@refs@*/ int nrefs; /*!< Reference count. */ + /* these are for TR_ADDED packages */ -/*@dependent@*/ struct availablePackage * ap; +/*@dependent@*/ availablePackage ap; /*@owned@*/ struct sharedFileInfo * replaced; /*@owned@*/ uint_32 * replacedSizes; @@ -135,7 +143,7 @@ typedef enum pkgStage_e { struct psm_s { /*@refcounted@*/ rpmTransactionSet ts; /*!< transaction set */ -/*@kept@*/ +/*@refcounted@*/ TFI_t fi; /*!< transaction element file info */ FD_t cfd; /*!< Payload file handle. */ FD_t fd; /*!< Repackage file handle. */ @@ -175,7 +183,7 @@ rpmProblemSet psCreate(void) * Append problem to set. */ void psAppend(rpmProblemSet probs, rpmProblemType type, - const struct availablePackage * alp, + const availablePackage alp, const char * dn, const char * bn, Header altH, unsigned long ulong1) /*@modifies probs, alp @*/; @@ -199,7 +207,7 @@ fileTypes whatis(uint_16 mode) * @return header with relocated files */ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi, - struct availablePackage * alp, + availablePackage alp, Header origH, fileAction * actions) /*@modifies ts, fi, alp, origH, actions @*/; @@ -212,8 +220,7 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi, */ void loadFi(/*@null@*/ const rpmTransactionSet ts, TFI_t fi, Header h, int scareMem) - /*@globals fileSystem @*/ - /*@modifies ts, fi, h, fileSystem @*/; + /*@modifies ts, fi, h @*/; /** * Destroy transaction element file info. diff --git a/lib/rpmlib.h b/lib/rpmlib.h index b251b10..59d8d34 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -613,20 +613,35 @@ extern int dbiTagsMax; /** \ingroup rpmdb * Unreference a database instance. - * @retval db rpm database + * @param db rpm database * @return NULL always */ -/*@null@*/ rpmdb rpmdbUnlink (/*@killref@*/ /*@only@*/ rpmdb db) +/*@unused@*/ /*@null@*/ +rpmdb rpmdbUnlink (/*@killref@*/ /*@only@*/ rpmdb db, const char * msg) + /*@modifies db @*/; + +/** @todo Remove debugging entry from the ABI. */ +/*@null@*/ +rpmdb XrpmdbUnlink (/*@killref@*/ /*@only@*/ rpmdb db, const char * msg, + const char * fn, unsigned ln) /*@modifies db @*/; +#define rpmdbUnlink(_db, _msg) XrpmdbUnlink(_db, _msg, __FILE__, __LINE__) /** \ingroup rpmdb * Reference a database instance. * @param db rpm database * @return new rpm database reference */ -rpmdb rpmdbLink (rpmdb db) +/*@unused@*/ +rpmdb rpmdbLink (rpmdb db, const char * msg) /*@modifies db @*/; +/** @todo Remove debugging entry from the ABI. */ +rpmdb XrpmdbLink (rpmdb db, const char * msg, + const char * fn, unsigned ln) + /*@modifies db @*/; +#define rpmdbLink(_db, _msg) XrpmdbLink(_db, _msg, __FILE__, __LINE__) + /** \ingroup rpmdb * Open rpm database. * @param prefix path to top of install tree @@ -637,7 +652,7 @@ rpmdb rpmdbLink (rpmdb db) */ int rpmdbOpen (/*@null@*/ const char * prefix, /*@null@*/ /*@out@*/ rpmdb * dbp, int mode, int perms) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies *dbp, fileSystem @*/; /** \ingroup rpmdb @@ -647,7 +662,7 @@ int rpmdbOpen (/*@null@*/ const char * prefix, /*@null@*/ /*@out@*/ rpmdb * dbp, * @return 0 on success */ int rpmdbInit(/*@null@*/ const char * prefix, int perms) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies fileSystem @*/; /** \ingroup rpmdb @@ -656,7 +671,7 @@ int rpmdbInit(/*@null@*/ const char * prefix, int perms) * @return 0 on success */ int rpmdbVerify(/*@null@*/ const char * prefix) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies fileSystem @*/; /** \ingroup rpmdb @@ -665,7 +680,7 @@ int rpmdbVerify(/*@null@*/ const char * prefix) * @return 0 on success */ int rpmdbClose (/*@killref@*/ /*@only@*/ /*@null@*/ rpmdb db) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies db, fileSystem @*/; /** \ingroup rpmdb @@ -674,7 +689,7 @@ int rpmdbClose (/*@killref@*/ /*@only@*/ /*@null@*/ rpmdb db) * @return 0 on success */ int rpmdbSync (/*@null@*/ rpmdb db) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies fileSystem @*/; /** \ingroup rpmdb @@ -692,7 +707,7 @@ int rpmdbOpenAll (/*@null@*/ rpmdb db) * @return number of instances */ int rpmdbCountPackages(/*@null@*/ rpmdb db, const char * name) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies db, fileSystem @*/; /** \ingroup rpmdb @@ -706,7 +721,7 @@ typedef /*@abstract@*/ struct _rpmdbMatchIterator * rpmdbMatchIterator; */ /*@null@*/ rpmdbMatchIterator rpmdbFreeIterator( /*@only@*//*@null@*/rpmdbMatchIterator mi) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies mi, fileSystem @*/; /** \ingroup rpmdb @@ -826,14 +841,14 @@ int rpmdbSetIteratorModified(/*@null@*/ rpmdbMatchIterator mi, int modified) * @return NULL on end of iteration. */ /*@null@*/ Header rpmdbNextIterator(/*@null@*/ rpmdbMatchIterator mi) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies mi, fileSystem @*/; /** @todo Remove debugging entry from the ABI. */ /*@unused@*/ /*@null@*/ Header XrpmdbNextIterator(rpmdbMatchIterator mi, const char * f, unsigned int l) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies mi, fileSystem @*/; /** \ingroup rpmdb @@ -847,7 +862,7 @@ int rpmdbSetIteratorModified(/*@null@*/ rpmdbMatchIterator mi, int modified) /*@only@*/ /*@null@*/ rpmdbMatchIterator rpmdbInitIterator( /*@null@*/ rpmdb db, int rpmtag, /*@null@*/ const void * keyp, size_t keylen) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies db, fileSystem @*/; /** \ingroup rpmdb @@ -858,7 +873,7 @@ int rpmdbSetIteratorModified(/*@null@*/ rpmdbMatchIterator mi, int modified) * @return 0 on success */ int rpmdbAdd(/*@null@*/ rpmdb db, int iid, Header h) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies db, h, fileSystem @*/; /** \ingroup rpmdb @@ -869,7 +884,7 @@ int rpmdbAdd(/*@null@*/ rpmdb db, int iid, Header h) * @return 0 on success */ int rpmdbRemove(/*@null@*/ rpmdb db, /*@unused@*/ int rid, unsigned int hdrNum) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies db, fileSystem @*/; /** \ingroup rpmdb @@ -928,7 +943,7 @@ typedef /*@abstract@*/ struct rpmProblemSet_s { /** */ void printDepFlags(FILE *fp, const char *version, int flags) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies *fp, fileSystem @*/; /** @@ -961,7 +976,7 @@ typedef /*@abstract@*/ struct rpmDependencyConflict_s { */ void printDepProblems(FILE * fp, const rpmDependencyConflict conflicts, int numConflicts) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies *fp, fileSystem @*/; /** @@ -982,7 +997,7 @@ void printDepProblems(FILE * fp, const rpmDependencyConflict conflicts, * @param prob rpm problem */ void rpmProblemPrint(FILE *fp, rpmProblem prob) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies prob, *fp, fileSystem @*/; /** @@ -991,7 +1006,7 @@ void rpmProblemPrint(FILE *fp, rpmProblem prob) * @param probs problem set */ void rpmProblemSetPrint(FILE *fp, rpmProblemSet probs) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies probs, *fp, fileSystem @*/; /** @@ -1153,7 +1168,7 @@ typedef /*@abstract@*/ struct psm_s * PSM_t; /** \ingroup rpmtrans */ -typedef /*@abstract@*/ struct transactionFileInfo_s * TFI_t; +typedef /*@abstract@*/ /*@refcounted@*/ struct transactionFileInfo_s * TFI_t; /** \ingroup rpmtrans * The RPM Transaction Set. @@ -1197,28 +1212,76 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts, FD_t fd, fileSystem, internalState @*/; /** \ingroup rpmtrans + * Unreference a transaction element file info instance. + * @param fi transaction element file info + * @return NULL always + */ +/*@unused@*/ /*@null@*/ +TFI_t rpmfiUnlink (/*@killref@*/ /*@only@*/ TFI_t fi, const char * msg) + /*@modifies fi @*/; + +/** @todo Remove debugging entry from the ABI. */ +/*@null@*/ +TFI_t XrpmfiUnlink (/*@killref@*/ /*@only@*/ TFI_t fi, const char * msg, + const char * fn, unsigned ln) + /*@modifies fi @*/; +#define rpmfiUnlink(_fi, _msg) XrpmfiUnlink(_fi, _msg, __FILE__, __LINE__) + +/** \ingroup rpmtrans + * Reference a transaction element file info instance. + * @param fi transaction element file info + * @return new transaction element file info reference + */ +/*@unused@*/ +TFI_t rpmfiLink (TFI_t fi, const char * msg) + /*@modifies fi @*/; + +/** @todo Remove debugging entry from the ABI. */ +TFI_t XrpmfiLink (TFI_t fi, const char * msg, + const char * fn, unsigned ln) + /*@modifies fi @*/; +#define rpmfiLink(_fi, _msg) XrpmfiLink(_fi, _msg, __FILE__, __LINE__) + +/** \ingroup rpmtrans * Unreference a transaction instance. * @param ts transaction set * @return NULL always */ -/*@null@*/ rpmTransactionSet rpmtsUnlink (/*@killref@*/ /*@only@*/ rpmTransactionSet ts) +/*@unused@*/ /*@null@*/ +rpmTransactionSet rpmtsUnlink (/*@killref@*/ /*@only@*/ rpmTransactionSet ts, + const char * msg) + /*@modifies ts @*/; + +/** @todo Remove debugging entry from the ABI. */ +/*@null@*/ +rpmTransactionSet XrpmtsUnlink (/*@killref@*/ /*@only@*/ rpmTransactionSet ts, + const char * msg, const char * fn, unsigned ln) /*@modifies ts @*/; +#define rpmtsUnlink(_ts, _msg) XrpmtsUnlink(_ts, _msg, __FILE__, __LINE__) /** \ingroup rpmtrans * Reference a transaction set instance. * @param ts transaction set * @return new transaction set reference */ -rpmTransactionSet rpmtsLink (rpmTransactionSet ts) +/*@unused@*/ +rpmTransactionSet rpmtsLink (rpmTransactionSet ts, const char * msg) /*@modifies ts @*/; +/** @todo Remove debugging entry from the ABI. */ +rpmTransactionSet XrpmtsLink (rpmTransactionSet ts, + const char * msg, const char * fn, unsigned ln) + /*@modifies ts @*/; +#define rpmtsLink(_ts, _msg) XrpmtsLink(_ts, _msg, __FILE__, __LINE__) + /** \ingroup rpmtrans * Close the database used by the transaction. * @param ts transaction set * @return 0 on success */ int rpmtsCloseDB(rpmTransactionSet ts) - /*@modifies ts @*/; + /*@globals fileSystem @*/ + /*@modifies ts, fileSystem @*/; /** \ingroup rpmtrans * Open the database used by the transaction. @@ -1227,7 +1290,8 @@ int rpmtsCloseDB(rpmTransactionSet ts) * @return 0 on success */ int rpmtsOpenDB(rpmTransactionSet ts, int dbmode) - /*@modifies ts @*/; + /*@globals fileSystem, internalState @*/ + /*@modifies ts, fileSystem, internalState @*/; /** \ingroup rpmtrans * Return transaction database iterator. @@ -1273,8 +1337,8 @@ rpmdbMatchIterator rpmtsInitIterator(const rpmTransactionSet ts, int rpmtag, int rpmtransAddPackage(rpmTransactionSet ts, Header h, /*@null@*/ FD_t fd, /*@null@*/ /*@owned@*/ const void * key, int upgrade, /*@null@*/ rpmRelocation * relocs) - /*@globals fileSystem@*/ - /*@modifies fd, h, ts, fileSystem @*/; + /*@globals fileSystem, internalState @*/ + /*@modifies fd, h, ts, fileSystem, internalState @*/; /** \ingroup rpmtrans * Add package to universe of possible packages to install in transaction set. @@ -1310,7 +1374,8 @@ void rpmtransClean(rpmTransactionSet ts) */ /*@null@*/ rpmTransactionSet rpmtransFree(/*@killref@*/ /*@only@*//*@null@*/ rpmTransactionSet ts) - /*@modifies ts @*/; + /*@globals fileSystem @*/ + /*@modifies ts, fileSystem @*/; /** \ingroup rpmtrans * Save file handle to be used as stderr when running package scripts. @@ -1345,8 +1410,9 @@ int rpmtransGetKeys(const rpmTransactionSet ts, int rpmdepCheck(rpmTransactionSet ts, /*@exposed@*/ /*@out@*/ rpmDependencyConflict * conflicts, /*@exposed@*/ /*@out@*/ int * numConflicts) - /*@globals fileSystem@*/ - /*@modifies ts, *conflicts, *numConflicts, fileSystem @*/; + /*@globals fileSystem, internalState @*/ + /*@modifies ts, *conflicts, *numConflicts, + fileSystem, internalState @*/; /** \ingroup rpmtrans * Determine package order in a transaction set according to dependencies. @@ -1493,7 +1559,7 @@ int rpmCheckRpmlibProvides(const char * keyName, const char * keyEVR, * @param fp output file handle */ void rpmShowRpmlibProvides(FILE * fp) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies *fp, fileSystem @*/; /** diff --git a/lib/transaction.c b/lib/transaction.c index b1ca07e..cd14789 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -56,6 +56,8 @@ extern int statvfs (const char * file, /*@out@*/ struct statvfs * buf) /*@access rpmProblemSet@*/ /*@access rpmProblem@*/ +/*@access availablePackage@*/ + /** */ struct diskspaceInfo { @@ -88,11 +90,11 @@ static /*@null@*/ void * freeFl(rpmTransactionSet ts, TFI_t fi; int oc; - /*@-usereleased@*/ + /*@-usereleased -onlytrans @*/ /* FIX: fi needs to be only */ for (oc = 0, fi = flList; oc < ts->orderCount; oc++, fi++) freeFi(fi); flList = _free(flList); - /*@=usereleased@*/ + /*@=usereleased =onlytrans @*/ } return NULL; } @@ -118,7 +120,7 @@ int rpmtransGetKeys(const rpmTransactionSet ts, const void *** ep, int * nep) switch (ts->order[oc].type) { case TR_ADDED: if (ts->addedPackages.list) { - struct availablePackage * alp; + availablePackage alp; alp = ts->addedPackages.list + ts->order[oc].u.addedIndex; *e = alp->key; /*@switchbreak@*/ break; @@ -748,7 +750,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi) /** */ -static int ensureOlder(struct availablePackage * alp, Header old, +static int ensureOlder(availablePackage alp, Header old, rpmProblemSet probs) /*@modifies alp, probs @*/ { @@ -973,11 +975,11 @@ static int tsGetOc(void * a) * @param a transaction element iterator * @return available package pointer */ -static /*@dependent@*/ struct availablePackage * tsGetAlp(void * a) +static /*@dependent@*/ availablePackage tsGetAlp(void * a) /*@*/ { struct tsIterator_s * iter = a; - struct availablePackage * alp = NULL; + availablePackage alp = NULL; int oc = iter->ocsave; /*@-branchstate@*/ @@ -1001,7 +1003,7 @@ static /*@null@*/ void * tsFreeIterator(/*@only@*//*@null@*/ void * a) { struct tsIterator_s * iter = a; if (iter) - iter->ts = rpmtsUnlink(iter->ts); + iter->ts = rpmtsUnlink(iter->ts, "tsIterator"); return _free(a); } @@ -1016,7 +1018,7 @@ static void * tsInitIterator(rpmTransactionSet ts) struct tsIterator_s * iter = NULL; iter = xcalloc(1, sizeof(*iter)); - iter->ts = rpmtsLink(ts); + iter->ts = rpmtsLink(ts, "tsIterator"); iter->reverse = ((ts->transFlags & RPMTRANS_FLAG_REVERSE) ? 1 : 0); iter->oc = (iter->reverse ? (ts->orderCount - 1) : 0); iter->ocsave = iter->oc; @@ -1028,7 +1030,7 @@ static void * tsInitIterator(rpmTransactionSet ts) * @param a file info iterator * @return next index, -1 on termination */ -static /*@dependent@*/ TFI_t tsNextIterator(void * a) +static TFI_t tsNextIterator(void * a) /*@*/ { struct tsIterator_s * iter = a; @@ -1055,7 +1057,7 @@ int rpmRunTransactions( rpmTransactionSet ts, { int i, j; int ourrc = 0; - struct availablePackage * alp; + availablePackage alp; int totalFileCount = 0; TFI_t fi; struct diskspaceInfo * dip; @@ -1069,6 +1071,7 @@ int rpmRunTransactions( rpmTransactionSet ts, PSM_t psm = &psmbuf; void * tsi; int xx; +int scareMem = 0; /* FIXME: what if the same package is included in ts twice? */ @@ -1096,7 +1099,7 @@ int rpmRunTransactions( rpmTransactionSet ts, memset(psm, 0, sizeof(*psm)); /*@-assignexpose@*/ - psm->ts = rpmtsLink(ts); + psm->ts = rpmtsLink(ts, "tsRun"); /*@=assignexpose@*/ /* Get available space on mounted file systems. */ @@ -1244,7 +1247,7 @@ int rpmRunTransactions( rpmTransactionSet ts, /* XXX watchout: fi->type must be set for tsGetAlp() to "work" */ fi->ap = tsGetAlp(tsi); fi->record = 0; - loadFi(ts, fi, fi->ap->h, 1); + loadFi(ts, fi, fi->ap->h, scareMem); /* XXX free fi->ap->h here if/when possible */ if (fi->fc == 0) continue; @@ -1335,7 +1338,7 @@ int rpmRunTransactions( rpmTransactionSet ts, /* Extract file info for all files in this package from the database. */ matches = xcalloc(fi->fc, sizeof(*matches)); if (rpmdbFindFpList(ts->rpmdb, fi->fps, matches, fi->fc)) { - psm->ts = rpmtsUnlink(ts); + psm->ts = rpmtsUnlink(ts, "tsRun (rpmFindFpList fail)"); return 1; /* XXX WTFO? */ } @@ -1472,7 +1475,6 @@ int rpmRunTransactions( rpmTransactionSet ts, tsi = tsInitIterator(ts); while ((fi = tsNextIterator(tsi)) != NULL) { - psm->fi = fi; if (fi->fc == 0) continue; fi->fps = _free(fi->fps); @@ -1494,7 +1496,7 @@ int rpmRunTransactions( rpmTransactionSet ts, ts->flList = freeFl(ts, ts->flList); ts->flEntries = 0; /*@-nullstate@*/ - psm->ts = rpmtsUnlink(psm->ts); + psm->ts = rpmtsUnlink(psm->ts, "tsRun (problems)"); return ts->orderCount; /*@=nullstate@*/ } @@ -1505,13 +1507,16 @@ int rpmRunTransactions( rpmTransactionSet ts, if (ts->transFlags & (RPMTRANS_FLAG_DIRSTASH | RPMTRANS_FLAG_REPACKAGE)) { tsi = tsInitIterator(ts); while ((fi = tsNextIterator(tsi)) != NULL) { - psm->fi = fi; switch (fi->type) { case TR_ADDED: /*@switchbreak@*/ break; case TR_REMOVED: - if (ts->transFlags & RPMTRANS_FLAG_REPACKAGE) + if (ts->transFlags & RPMTRANS_FLAG_REPACKAGE) { + psm->fi = rpmfiLink(fi, "tsRepackage"); xx = psmStage(psm, PSM_PKGSAVE); + (void) rpmfiUnlink(fi, "tsRepackage"); + psm->fi = NULL; + } /*@switchbreak@*/ break; } } @@ -1524,12 +1529,13 @@ int rpmRunTransactions( rpmTransactionSet ts, lastFailed = -2; /* erased packages have -1 */ tsi = tsInitIterator(ts); + /*@-branchstate@*/ /* FIX: fi reload needs work */ while ((fi = tsNextIterator(tsi)) != NULL) { Header h; int gotfd; gotfd = 0; - psm->fi = fi; + psm->fi = rpmfiLink(fi, "tsInstall"); switch (fi->type) { case TR_ADDED: alp = tsGetAlp(tsi); @@ -1637,13 +1643,16 @@ assert(alp == fi->ap); /*@switchbreak@*/ break; } xx = rpmdbSync(ts->rpmdb); + (void) rpmfiUnlink(fi, "tsInstall"); + psm->fi = NULL; } + /*@=branchstate@*/ tsi = tsFreeIterator(tsi); ts->flList = freeFl(ts, ts->flList); ts->flEntries = 0; - psm->ts = rpmtsUnlink(psm->ts); + psm->ts = rpmtsUnlink(psm->ts, "tsRun"); /*@-nullstate@*/ if (ourrc) diff --git a/lib/ts.c b/lib/ts.c index a8798d4..cbf0367 100644 --- a/lib/ts.c +++ b/lib/ts.c @@ -9,83 +9,56 @@ #include "debug.h" -static int _debug = 0; +static int _debug = 1; #define BHPATH "/mnt/redhat/beehive/comps/dist" #define BHCOLL "7.2" -#if 0 -#define BHN "{basesystem,bash,filesystem,glibc-common,glibc,ldconfig,libtermcap,mktemp,setup,termcap}" -#else -#define BHN "setup" -#endif +#define BHN "@(basesystem|bash|filesystem|glibc-common|glibc|ldconfig|libtermcap|mktemp|setup|termcap)" #define BHVR "*" -#define BHA "*" +#define BHA "@(i[3456]86|noarch)" const char * bhpath = BHPATH; int bhpathlen = sizeof(BHPATH)-1; -const char * bhcoll = BHCOLL; -const char * bhn = BHN; -const char * bhvr = BHVR; -const char * bha = BHA; int bhlvl = -1; +static char * const ftsSet[] = { + BHPATH, NULL, +}; + struct ftsglob_s { const char ** patterns; int fnflags; }; const char * lvl0[] = { - NULL, NULL + BHPATH, NULL }; const char * lvl1[] = { - NULL, NULL + BHCOLL, NULL }; const char * lvl2[] = { - NULL, NULL + BHN, NULL }; const char * lvl3[] = { - NULL, NULL + BHVR, NULL }; const char * lvl4[] = { - NULL, NULL -}; - -const char * lvl5[] = { - NULL, NULL -}; - -const char * lvl6[] = { - NULL, NULL -}; - -const char * lvl7[] = { - NULL, NULL + BHA, NULL }; static struct ftsglob_s bhglobs[] = { -#if 0 - { BHPATH "/" BHCOLL "/" BHN "/" BHVR "/" BHA "/*", 0 }, - { BHCOLL, FNM_PERIOD }, - { BHN, FNM_PERIOD }, - { BHVR, FNM_PERIOD }, - { BHA, FNM_PERIOD }, -#else - { lvl0, FNM_PERIOD }, - { lvl1, FNM_PERIOD }, - { lvl2, FNM_PERIOD }, - { lvl3, FNM_PERIOD }, - { lvl4, FNM_PERIOD }, - { lvl5, FNM_PERIOD }, - { lvl6, FNM_PERIOD }, - { lvl7, FNM_PERIOD }, -#endif + { lvl0, (FNM_PATHNAME | FNM_PERIOD | FNM_EXTMATCH) }, + { lvl1, (FNM_PATHNAME | FNM_PERIOD | FNM_EXTMATCH) }, + { lvl2, (FNM_PATHNAME | FNM_PERIOD | FNM_EXTMATCH) }, + { lvl3, (FNM_PATHNAME | FNM_PERIOD | FNM_EXTMATCH) }, + { lvl4, (FNM_PATHNAME | FNM_PERIOD | FNM_EXTMATCH) }, }; static int nbhglobs = sizeof(bhglobs)/sizeof(bhglobs[0]); @@ -140,36 +113,8 @@ static int ftsPrint(FTS * ftsp, FTSENT * fts, rpmTransactionSet ts) break; } lvl = fts->fts_level - bhlvl; -#ifdef DYING - if (lvl <= 0) { - break; - } else if (lvl == 1) { - /* Skip collections we're not interested in. */ - if (!strcmp(fts->fts_name, bhcoll)) - break; - xx = fts_set(ftsp, fts, FTS_SKIP); - break; - } else if (lvl == 2) { - /* Skip names we're not interested in. */ - if (!strcmp(fts->fts_name, bhn)) - break; - xx = fts_set(ftsp, fts, FTS_SKIP); - break; - } else if (lvl == 3) { - /* Skip version-release we're not interested in. */ - if (!strcmp(fts->fts_name, bhvr)) - break; - xx = fts_set(ftsp, fts, FTS_SKIP); - break; - } else if (lvl == 4) { - /* Skip arch we're not interested in. */ - if (!strcmp(fts->fts_name, bha)) - break; - xx = fts_set(ftsp, fts, FTS_SKIP); - break; - } -#else - if (lvl < 0 || lvl >= nbhglobs) + + if (lvl < 0) break; #if 0 @@ -192,7 +137,7 @@ static int ftsPrint(FTS * ftsp, FTSENT * fts, rpmTransactionSet ts) } /* Level specific glob expression check(s). */ - if (lvl == 0) + if (lvl == 0 || lvl >= nbhglobs) break; bhg += lvl; @@ -207,7 +152,7 @@ static int ftsPrint(FTS * ftsp, FTSENT * fts, rpmTransactionSet ts) else xx = fts_set(ftsp, fts, FTS_SKIP); } -#endif + break; case FTS_DP: /* postorder directory */ #if 0 @@ -239,7 +184,10 @@ static int ftsPrint(FTS * ftsp, FTSENT * fts, rpmTransactionSet ts) fprintf(stderr, "\t%*s %s-%s-%s\n", indent * (fts->fts_level < 0 ? 0 : fts->fts_level), "", n, v, r); +#ifdef NOTYET xx = rpmtransAddPackage(ts, h, NULL, fts->fts_path, 1, NULL); +#endif + break; case FTS_NS: /* stat(2) failed */ case FTS_DNR: /* unreadable directory */ @@ -269,10 +217,66 @@ static int ftsPrint(FTS * ftsp, FTSENT * fts, rpmTransactionSet ts) return 0; } -static char * const ftsSet[] = { - BHPATH, NULL, -}; +static int depth; +static int level; +static int globx; +static void go (const char * sb, const char * se) +{ + const char * s = sb; + int blvl = 0; + int plvl = 0; + int c; + + globx = -1; + while ( s < se && (c = *s) != '\0' ) { + s++; + switch (c) { + case '+': + case '@': + case '!': + continue; + case '?': + case '*': + if (*s == '(') + continue; + if (globx < 0) + globx = (s - sb - 1); + continue; + case '[': + blvl++; + continue; + case ']': + if (!blvl) + continue; + --blvl; + if (!blvl && globx < 0) + globx = (s - sb - 1); + continue; + case '(': + plvl++; + continue; + case '|': + continue; + case ')': + if (!plvl) + continue; + --plvl; + if (!plvl && globx < 0) + globx = (s - sb - 1); + continue; + case '\\': + if (*s) + s++; + continue; + case '/': + depth++; + continue; + default: + continue; + } + } +} static struct poptOption optionsTable[] = { { "verbose", 'v', 0, 0, 'v', NULL, NULL }, @@ -281,7 +285,6 @@ static struct poptOption optionsTable[] = { POPT_TABLEEND }; - int main(int argc, const char *argv[]) { @@ -312,41 +315,60 @@ main(int argc, const char *argv[]) rpmReadConfigFiles(NULL, NULL); + if (_debug) { + rpmIncreaseVerbosity(); + rpmIncreaseVerbosity(); + } + ts = rpmtransCreateSet(db, rootDir); (void) rpmtsOpenDB(ts, O_RDONLY); args = poptGetArgs(optCon); - if (args) - while ((arg = *args++) != NULL) { - t = buf; - *t = '\0'; - t = stpcpy(t, BHPATH); - *t++ = '/'; - t = stpcpy(t, BHCOLL); - *t++ = '/'; - t = stpcpy(t, arg); - *t++ = '/'; - t = stpcpy(t, "*"); - *t++ = '/'; - t = stpcpy(t, "i386"); - *t++ = '/'; - t = stpcpy(t, "*.rpm"); + t = buf; + *t = '\0'; + t = stpcpy(t, BHPATH); + *t++ = '/'; + t = stpcpy(t, BHCOLL); + *t++ = '/'; + + if (args == NULL) + t = stpcpy(t, BHN); + else { + t = stpcpy(t, "@("); + while ((arg = *args++) != NULL) { + t = stpcpy(t, arg); + *t++ = '|'; + } + t[-1] = ')'; + } + + *t++ = '/'; + t = stpcpy(t, BHVR); + *t++ = '/'; + t = stpcpy(t, BHA); fprintf(stderr, "*** \"%s\"\n", buf); - lvl0[0] = buf; - lvl1[0] = BHCOLL; - lvl2[0] = arg; + + level = 0; + depth = (buf[0] == '/') ? -1 : 0; + globx = -1; + go(buf, buf+strlen(buf)); + +fprintf(stderr, "*** \"%s/%s/%s/%s/%s\"\n", *lvl0, *lvl1, *lvl2, *lvl3, *lvl4); + +#if 0 + lvl0[0] = buf; +#endif if (!_debug) { - ftsp = fts_open(ftsSet, ftsOpts, NULL); - while((fts = fts_read(ftsp)) != NULL) - xx = ftsPrint(ftsp, fts, ts); - xx = fts_close(ftsp); + ftsp = fts_open(ftsSet, ftsOpts, NULL); + while((fts = fts_read(ftsp)) != NULL) + xx = ftsPrint(ftsp, fts, ts); + xx = fts_close(ftsp); } - } - +#ifdef NOTYET if (!_debug) { { rpmDependencyConflict conflicts = NULL; int numConflicts = 0; @@ -364,6 +386,7 @@ if (!_debug) { (void) rpmdepOrder(ts); } +#endif exit: ts = rpmtransFree(ts); diff --git a/lib/verify.c b/lib/verify.c index b521b7b..6a73d71 100644 --- a/lib/verify.c +++ b/lib/verify.c @@ -288,7 +288,7 @@ static int rpmVerifyScript(/*@unused@*/ QVA_t qva, rpmTransactionSet ts, PSM_t psm = memset(alloca(sizeof(*psm)), 0, sizeof(*psm)); int rc; - psm->ts = rpmtsLink(ts); + psm->ts = rpmtsLink(ts, "rpmVerifyScript"); if (scriptFd != NULL) { /*@-type@*/ /* FIX: ??? */ @@ -306,7 +306,9 @@ static int rpmVerifyScript(/*@unused@*/ QVA_t qva, rpmTransactionSet ts, psm->progTag = RPMTAG_VERIFYSCRIPTPROG; rc = psmStage(psm, PSM_SCRIPT); freeFi(fi); + /*@-refcounttrans@*/ /* FIX: fi needs to be only */ fi = _free(fi); + /*@=refcounttrans@*/ if (scriptFd != NULL) { /*@-type@*/ /* FIX: ??? */ @@ -317,7 +319,7 @@ static int rpmVerifyScript(/*@unused@*/ QVA_t qva, rpmTransactionSet ts, rpmtransClean(ts); /* XXX this is sure to cause heartburn */ - psm->ts = rpmtsUnlink(ts); + psm->ts = rpmtsUnlink(ts, "rpmVerifyScript"); return rc; } @@ -484,8 +486,8 @@ exit: */ static int verifyDependencies(/*@unused@*/ QVA_t qva, rpmTransactionSet ts, Header h) - /*@globals fileSystem@*/ - /*@modifies ts, h, fileSystem @*/ + /*@globals fileSystem, internalState @*/ + /*@modifies ts, h, fileSystem, internalState @*/ { rpmDependencyConflict conflicts; int numConflicts; diff --git a/po/cs.po b/po/cs.po index 320ca52..7f23a06 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -18,44 +18,44 @@ msgstr "chybn msgid "Unable to open spec file %s: %s\n" msgstr "Nelze otevøít spec soubor %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Nelze otevøít rouru pro tar: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Nelze èíst spec soubor z %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Nelze pøejmenovat %s na %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "nemohu zjistit stav %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "Soubor %s není obyèejný soubor.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Nezdá se, ¾e by %s byl spec soubor.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Sestavuji cílové platformy: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Sestavuji pro cíl %s\n" @@ -831,7 +831,7 @@ msgstr "Nemohu p msgid "Could not open %s: %s\n" msgstr "Nemohu otevøít %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "Nemohu zapsat balíèek: %s\n" @@ -861,7 +861,7 @@ msgstr "Nemohu p msgid "Unable to write payload to %s: %s\n" msgstr "Nemohu zapsat payload do %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Zapsáno: %s\n" @@ -1376,17 +1376,17 @@ msgstr "c msgid "lookup i18N strings in specfile catalog" msgstr "vyhledat i18N øetìzce ve specfile katalogu" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "øádek %d: ©patné èíslo: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "øádek %d: ©patné èíslo %s: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "øádek %d: ©patné èíslo %s: %s\n" @@ -1433,7 +1433,7 @@ msgid " failed - " msgstr "selhal - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1442,85 +1442,85 @@ msgstr "" "Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "ANO" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "NE " -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "nemohu otevøít databázi balíèkù v %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "balíèek %s je ji¾ nainstalován" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s ANO (pøidány soubory)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s ANO (pøidáno poskytuje)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (ke¹ováno)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s ANO (rpmrc poskytuje)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s ANO (rpmlib poskytuje)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s ANO (db soubory)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s ANO (db poskytuje)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s ANO (db balíèek)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NE\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n" @@ -1528,43 +1528,43 @@ msgstr "%s: (%s, %s) p #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "balíèek %s koliduje: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "========== ukládání tsort relací\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "SMYÈKA:\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== pokraèuje tsort ...\n" @@ -1616,47 +1616,47 @@ msgstr "nemohu otev msgid "file %s is on an unknown device\n" msgstr "soubor %s je na neznámém zaøízení\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "vytvoøen adresáø %s s právy %04o.\n" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s ulo¾eno jako %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s selhal: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink %s selhal: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s vytvoøen jako %s\n" @@ -1668,7 +1668,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Datový typ %d není podporován\n" @@ -2254,108 +2254,108 @@ msgstr "p msgid "unknown error %d encountered while manipulating package %s" msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== relokace\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d vynechávám %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d pøemís»uji %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "vynechávám multilib cestu %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "vynechávám %s %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "pøemís»uji %s do %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "pøemís»uji adresáø %s do %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "nemohu vytvoøit %s: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "nemohu zapsat do %%%s %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "zdrojový balíèek neobsahuje .spec soubor\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - pou¾ita skupina root\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalování archívu selhalo %s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " na souboru " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nemohu otevøít %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s selhalo\n" @@ -2873,13 +2873,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "vynechávám adresáø %s\n" @@ -2895,17 +2895,17 @@ msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "balíèek neobsahuje ani jména skupin ani seznam id (nemìlo by se nikdy stát)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "chybí %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: kontrola digestu v hlavièce selhala\n" @@ -3058,41 +3058,41 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "generovat hlavièky kompatibilní RPM verze 2 a 3" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: neznámá znaèka: \"%s\" ignorována\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nemohu otevøít index %s pøi pou¾ívání db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "nemohu otevøít index %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "chyba(%d) pøi získávání záznamu \"%s\" z indexu %s\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "chyba(%d) pøi ukládání záznamu %s do %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "chyba(%d) pøi odstraòování záznamu %s z %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "nebyla nastavena dbpath\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3100,115 +3100,115 @@ msgstr "" "databáze je ve starém formátu; pou¾ijte --rebuilddb pro pøevod do nového\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "chyba(%d) pøi poèítání balíèkù\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databázi je chybný -- vynechávám.\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: poru¹ená polo¾ka hlavièky #%u, pøeskakuji.\n" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: nemohu èíst hlavièku na adrese 0x%x\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuji \"%s\" z indexu %s.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuji %d polo¾ek z indexu %s.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba(%d) pøi alokaci nové instance balíèku\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "pøidávám \"%s\" do indexu %s\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "pøidávám %d polo¾ek do indexu %s.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "odstraòuji %s po úspì¹ném znovusestavení db3.\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "databázi %s pøevádím do %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáze %s ji¾ existuje\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "vytváøím adresáø %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "vytváøím adresáø %s: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "otevírám starou databázi s dbapi %d\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "otevírám novou databázi s dbapi %d\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "nemohu pøidat záznam - pùvodnì u %d\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "databázi nelze zvovu vytvoøit; pùvodní databáze zùstává na svém místì\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "pro obnovení nahraïte soubory v %s soubory z %s" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "ma¾u adresáø %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nemohu odstranit adresáø %s: %s\n" diff --git a/po/da.po b/po/da.po index 6d3b2fe..b2ba61d 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -19,44 +19,44 @@ msgstr "afh msgid "Unable to open spec file %s: %s\n" msgstr "Kan ikke åbne spec-fil %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunne ikke åbne tar-videreførsel: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Kunne ikke læse spec-fil fra %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Kunne ikke omdøbe %s til %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunne ikke finde %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "Filen %s er ikke en regulær fil.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Filen %s synes ikke at være en spec-fil.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Opbygger mål-platforme: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Opbygger for mål %s\n" @@ -828,7 +828,7 @@ msgstr "Kunne ikke l msgid "Could not open %s: %s\n" msgstr "Kunne ikke åbne %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" @@ -858,7 +858,7 @@ msgstr "Kunne ikke l msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -1376,17 +1376,17 @@ msgstr "gennemtving m msgid "lookup i18N strings in specfile catalog" msgstr "slå i18N-strenge op i spec-fil katalog" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linie %d: Ugyldigt tal: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linie %d: Ugyldigt 'no%s'-tal: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linie %d: Ugyldigt %s-tal: %s\n" @@ -1434,7 +1434,7 @@ msgid " failed - " msgstr " mislykkedes - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1443,86 +1443,86 @@ msgstr "" "\"B\"-afhængighed kræver en epoke (antager samme som \"A\")\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 #, fuzzy msgid "NO " msgstr "IKKE O.K." -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "kunne ikke åbne Packages-database i %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "pakken %s er allerede installeret" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s JA (tilføjede filer)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s JA (tilføjede 'provide')\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-3s (husket)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s JA (rpmrc tilfører)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s JA (rpmlib tilfører)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s JA (db-filer)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s JA (db tilfører)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s JA (db-pakke)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NEJ\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n" @@ -1530,42 +1530,42 @@ msgstr "%s: (%s, %s) tilf #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakke %s skaber konflikt: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "========== gemmer tsort-relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "LØKKE:\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== fortsætter tsort ...\n" @@ -1617,46 +1617,46 @@ msgstr "kunne ikke msgid "file %s is on an unknown device\n" msgstr "fil %s er på en ukendt enhed\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linie %d: %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s gemt som %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kan ikke fjerne %s - katalog ikke tomt\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "åbning af %s mislykkedes %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s oprettet som %s\n" @@ -1668,7 +1668,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Datatype %d understøttes ikke\n" @@ -2273,110 +2273,110 @@ msgstr "pakke %s pr msgid "unknown error %d encountered while manipulating package %s" msgstr "ukendt fejl %d under arbejdet med pakken %s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== gemmer omrokeringer\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ekskluderer %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omrokerer %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ekskluderer multilib-sti %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "ekskluderer %s %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "omrokerer %s til %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "omrokerer kataloget %s til %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "kan ikke oprette %s: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "kunne ikke skrive til %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "kildepakke forventet, binær fundet\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "kildepakke indeholder ingen .spec-fil\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "kører postinstallations-skript (hvis det findes)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "pakke: %s-%s-%s filer test = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "bruger %s eksisterer ikke - bruger root\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "gruppe %s eksisterer ikke - bruger root\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "udpakning af arkiv mislykkedes%s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " for fil " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "kunne ikke åbne %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s mislykkedes\n" @@ -2895,13 +2895,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Signaturfyld : %d\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s oversprunget grundet manglende ok-flag\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer kataloget %s\n" @@ -2918,17 +2918,17 @@ msgstr "" "pakken har hverken en liste over gruppenavne eller id (det burde ikke kunne " "ske)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "manglende %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3083,41 +3083,41 @@ msgstr "" "generér hoveder, der er kompatible med (gamle) rpm[23]-indpakningsversioner" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: ukendt mærkenavn: \"%s\" ignoreret\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan ikke åbne '%s'-indeks ved brug af db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "kan ikke åbne '%s'-indeks\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "fejl(%d) ved fjernelse af post %s fra %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "der er ikke sat nogen dbpath\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3126,118 +3126,118 @@ msgstr "" "database med det nye format\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "fejl(%d) ved optælling af pakker\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan ikke læse hoved ved 0x%x\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "fjerner \"%s\" fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "fjerne %d indgange fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fejl(%d) under allokering af ny pakkeinstans\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" "tilføjer \"%s\" til '%s'-indekset.\n" "\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "tilføjer %d indgange til '%s'-indekset.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "fjerner %s efter vellykket genopbygning af db3.\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "der ikke sat nogen dbpath" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "genopbygger database %s over i %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "den midlertidige database %s eksisterer allerede\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" "opretter kataloget %s\n" "\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "opretter kataloget %s: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "åbner gammel database med dbapi %d\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "åbner ny database med dbapi %d\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunne ikke genopbygge database: original-databasen beholdes\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "kunne ikke erstatte gammel database med ny database!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "erstat filer i %s med filer fra %s for at genoprette" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "fjerner kataloget %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunne ikke fjerne katalog %s: %s\n" diff --git a/po/de.po b/po/de.po index ef8ab50..306ba09 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -57,47 +57,47 @@ msgid "Unable to open spec file %s: %s\n" msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." # , c-format -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s scheint kein RPM-Paket zu sein\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s scheint kein RPM-Paket zu sein\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "Fehler beim Suchen nach Paket %s\n" @@ -921,7 +921,7 @@ msgid "Could not open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nicht möglich %s zu schreiben" @@ -956,7 +956,7 @@ msgstr "Nicht m msgid "Unable to write payload to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1508,17 +1508,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/spec.c:294 +#: build/spec.c:297 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" @@ -1569,92 +1569,92 @@ msgid " failed - " msgstr "pgp fehlgeschlagen" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "Paket %s ist nicht installiert\n" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" @@ -1662,43 +1662,43 @@ msgstr "die Datei #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" # FIXME -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1753,47 +1753,47 @@ msgstr " msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -1805,7 +1805,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2442,114 +2442,114 @@ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" # , c-format -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Hole %s heraus\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "kann Datei %s nicht öffnen: " # , c-format -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Hole %s heraus\n" # , c-format -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Hole %s heraus\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "Keine Stufen ausführen" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "Ausführung des Skripts fehlgeschlagen" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "Ausführung des Skripts fehlgeschlagen" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp fehlgeschlagen" @@ -3091,13 +3091,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" @@ -3110,17 +3110,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "fehlende { nach %{" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3271,162 +3271,162 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "Fehler beim Eintrag %s von %s" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" # FIXME -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # FIXME -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "die temporäre Datenbank %s existiert schon" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" diff --git a/po/en_RN.po b/po/en_RN.po index d69c57a..d8d93b7 100644 --- a/po/en_RN.po +++ b/po/en_RN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/es.po b/po/es.po index d69c57a..d8d93b7 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/eu_ES.po b/po/eu_ES.po index d69c57a..d8d93b7 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 0b62c03..a380033 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -17,44 +17,44 @@ msgstr "puuttuvat riippuvuudet:\n" msgid "Unable to open spec file %s: %s\n" msgstr "En voi avata %s luettavaksi: %s." -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "%s:n avaus epäonnistui\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "En voi lukea %s: %s." -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "En voi lukea %s: %s." -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "en voinut avata %s: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s ei vaikuta RPM-paketilta\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ei vaikuta RPM-paketilta\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "virhe etsittäessä pakettia %s\n" @@ -835,7 +835,7 @@ msgstr "%s:n kirjoitus ei onnistu" msgid "Could not open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "%s:n kirjoitus ei onnistu" @@ -865,7 +865,7 @@ msgstr "%s:n kirjoitus ei onnistu" msgid "Unable to write payload to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1391,17 +1391,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "virheellinen paketin numero: %s\n" -#: build/spec.c:294 +#: build/spec.c:297 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "virheellinen paketin numero: %s\n" @@ -1452,92 +1452,92 @@ msgid " failed - " msgstr "pgp epäonnistui" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" @@ -1545,42 +1545,42 @@ msgstr "tiedostoa %s ei omista mik #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paketti %s ei ole %s:ssä" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1632,46 +1632,46 @@ msgstr "en voinut avata %s: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "en voinut avata %s: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "en voi poistaa %s -hakemisto ei ole tyhjä" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -1683,7 +1683,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2305,109 +2305,109 @@ msgstr "paketti %s-%s-%s sis msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Haen: %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Haen: %s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Haen: %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "älä suorita mitään vaiheita" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "skriptin ajo epäonnistui" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "skriptin ajo epäonnistui" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp epäonnistui" @@ -2942,13 +2942,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" @@ -2961,17 +2961,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "puuttuva '{' '%':n jälkeen" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3121,156 +3121,156 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "virhe: en voi avata %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "en voi lisätä tietuetta %d:stä" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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 2827866..0baba03 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,44 +24,44 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Unable to open spec file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "impossible d'ouvrir: %s\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -870,7 +870,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Could not open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -900,7 +900,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1434,17 +1434,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "impossible d'ouvrir: %s\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1492,92 +1492,92 @@ msgid " failed - " msgstr "La construction a chou.\n" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1585,42 +1585,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1670,46 +1670,46 @@ msgstr "impossible d'ouvrir: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -1721,7 +1721,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2358,110 +2358,110 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "" " -f + - interroge le package qui appartient " -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "La construction a chou.\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "La construction a chou.\n" @@ -2991,13 +2991,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3010,17 +3010,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3170,155 +3170,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" diff --git a/po/gl.po b/po/gl.po index 0537039..972fe62 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -18,44 +18,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -811,7 +811,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -841,7 +841,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1349,17 +1349,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1406,92 +1406,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1499,42 +1499,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1584,46 +1584,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1635,7 +1635,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2207,108 +2207,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2822,13 +2822,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2841,17 +2841,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -2999,155 +2999,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index d69c57a..d8d93b7 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/id.po b/po/id.po index d69c57a..d8d93b7 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/is.po b/po/is.po index e1beb6a..e53387e 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -18,44 +18,44 @@ msgstr "gat ekki msgid "Unable to open spec file %s: %s\n" msgstr "Get ekki opnað spec skrána %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Gat ekki opnað pípu í tar: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Gat ekki lesið spec skrá frá %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Gat ekki endurnefnt %s sem %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "gat ekki skoðað %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "Skráin %s er ekki venjuleg skrá.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Skráin %s virðist ekki vera specskrá.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Þýði fyrir markkerfi: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Þýði fyrir markkerfi %s\n" @@ -815,7 +815,7 @@ msgstr "Get ekki lesi msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "Get ekki ritað í pakka: %s\n" @@ -845,7 +845,7 @@ msgstr "Get ekki lesi msgid "Unable to write payload to %s: %s\n" msgstr "Get ekki ritað innihald í %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Skrifaði: %s\n" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "get ekki opnað pakka gagnagrunn í\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "gat ekki opna msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s vistað sem %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s brást: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s gat ekki eytt %s: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s búið til sem %s\n" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2217,108 +2217,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "gat ekki búið til %%%s %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "get ekki ritað í %%%s %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "pakkinn inniheldur enga .spec skrá\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "gat ekki opnað %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s brást\n" @@ -2832,13 +2832,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2851,17 +2851,17 @@ msgstr " msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "í pakkanum eru engir hópalistar (þetta ætti aldrei að koma fyrir)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "vantar %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3009,155 +3009,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "get ekki opnað %s index með db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "get ekki opnað %s index\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/it.po b/po/it.po index d69c57a..d8d93b7 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 2a91722..b535576 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -24,44 +24,44 @@ msgstr " msgid "Unable to open spec file %s: %s\n" msgstr "spec ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar ¥Ñ¥¤¥×¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "%s ¤«¤é spec ¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "stat %s ¤Ë¼ºÇÔ: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "ÉáÄ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï ¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "ºîÀ®Ã楿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à: %s\n" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n" @@ -862,7 +862,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" @@ -892,7 +892,7 @@ msgstr " msgid "Unable to write payload to %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "½ñ¤­¹þ¤ßÃæ: %s\n" @@ -1423,17 +1423,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¥«¥¿¥í¥°Ãæ¤Î I18N ʸ»úÎó¤òõ¤·¤Æ¤¤¤Þ¤¹" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤ÊÈÖ¹æ: %s" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n" @@ -1484,7 +1484,7 @@ msgid " failed - " msgstr "¼ºÇÔ - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1493,85 +1493,85 @@ msgstr "" "\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, fuzzy, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %s ¤Ï¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %s ¤Ï db ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, fuzzy, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, fuzzy, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %s ¤Ï db ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" @@ -1579,42 +1579,42 @@ msgstr "%s: %s #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤¹: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1666,46 +1666,46 @@ msgstr "%s msgid "file %s is on an unknown device\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%d ¹ÔÌÜ: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹" @@ -1718,7 +1718,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" @@ -2365,111 +2365,111 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó" -#: lib/psm.c:1216 +#: lib/psm.c:1240 #, fuzzy msgid "source package expected, binary found\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s" -#: lib/psm.c:2242 +#: lib/psm.c:2268 #, fuzzy msgid " on file " msgstr "¥Õ¥¡¥¤¥ë¾å" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s ¼ºÇÔ" @@ -3002,13 +3002,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "½ð̾¥Ñ¥Ã¥É: %d\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n" @@ -3027,17 +3027,17 @@ msgstr "" "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id ¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê" "¤é¤Ê¤¤)" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3192,158 +3192,158 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó %s:%d" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" diff --git a/po/ko.po b/po/ko.po index 2dbd863..f04d331 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-09-07 22:03+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -18,44 +18,44 @@ msgstr " msgid "Unable to open spec file %s: %s\n" msgstr "%s spec ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar ÆÄÀÌÇÁ¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "%s ¿¡¼­ spec ÆÄÀÏÀ» Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s ¿¡¼­ %s (À¸)·Î À̸§ º¯°æÇϴµ¥ ½ÇÆÐÇÔ: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "%s ÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "%s ÆÄÀÏÀº Á¤±Ô(regular) ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ÆÄÀÏÀº spec ÆÄÀÏÀÌ ¾Æ´Ñ °Í °°½À´Ï´Ù.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "¸ñÇ¥´ë»ó(target) Ç÷§ÆûÀ¸·Î Á¦ÀÛ Áß: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "%s (À»)¸¦ Á¦ÀÛÇÏ°í ÀÖ½À´Ï´Ù\n" @@ -822,7 +822,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "%s (À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" @@ -852,7 +852,7 @@ msgstr "%s msgid "Unable to write payload to %s: %s\n" msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "ÀÛ¼º: %s\n" @@ -1367,17 +1367,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "specÆÄÀÏ ¸ñ·Ï(catalog)¿¡¼­ i18N ¹®ÀÚ¿­À» ã½À´Ï´Ù" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "%d ¹ø° ÁÙ: À߸øµÈ ¼ýÀÚÀÔ´Ï´Ù: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "%d ¹ø° ÁÙ: À߸øµÈ no%s ¼ýÀÚÀÔ´Ï´Ù: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "%d ¹ø° ÁÙ: À߸øµÈ %s ¼ýÀÚÀÔ´Ï´Ù: %s\n" @@ -1424,7 +1424,7 @@ msgid " failed - " msgstr " ½ÇÆÐÇÔ - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1433,85 +1433,85 @@ msgstr "" "\"B\" ÀÇÁ¸¼ºÀº Áß¿ä½Ã µÇ´Â °Í(epoch)À» ÇÊ¿ä·Î ÇÕ´Ï´Ù (\"A\" ·Î °¡Á¤ÇÕ´Ï´Ù)\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "¿¹" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "¾Æ´Ï¿À" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "%s ÆÐÅ°Áö´Â ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s ¿¹ (ÆÄÀÏÀÌ Ãß°¡µÊ)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s ¿¹ (Á¦°øÀÌ Ãß°¡µÊ)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (ij½ÃµÊ)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s ¿¹ (db ÆÄÀÏ)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s ¿¹ (db ÆÐÅ°Áö)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s ¾Æ´Ï¿À\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) ÀÇÁ¸(Depends) ij½Ã¿¡ Ãß°¡µÇ¾ú½À´Ï´Ù.\n" @@ -1519,43 +1519,43 @@ msgstr "%s: (%s, %s) #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "%s-%s-%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä »çÇ×ÀÌ ¸¸Á·µÇÁö ¾ÊÀ½: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "ÆÐÅ°Áö %s (ÀÌ)°¡ Ãæµ¹ÇÔ: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, ±íÀÌ[depth])\n" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== ÈÄÀÓÀÚ [successors only] (Ç¥Çö ¼ø)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "·çÇÁ(LOOP):\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n" @@ -1607,47 +1607,47 @@ msgstr "%s ( msgid "file %s is on an unknown device\n" msgstr "%s ÆÄÀÏÀÌ ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ Á¸ÀçÇÕ´Ï´Ù\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s %s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n" @@ -1659,7 +1659,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE Ä«¿îÆ®´Â ¹Ýµå½Ã '1' À̾î¾ß ÇÕ´Ï´Ù.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù\n" @@ -2254,114 +2254,114 @@ msgid "unknown error %d encountered while manipulating package %s" msgstr "" "%2$s ÆÐÅ°Áö¸¦ ó¸®ÇÏ´Â °úÁ¤¿¡¼­ ¾Ë ¼ö ¾ø´Â ¿À·ù %1$d (ÀÌ)°¡ ¹ß»ýÇß½À´Ï´Ù" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== Àç¹èÄ¡\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d Á¦¿Ü(exclude) %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d Àç¹èÄ¡ %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "%s %s (À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¿¡¼­ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s µð·ºÅ丮¸¦ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "%%%s %s (À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "%%%s %s (À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "¼Ò½º ÆÐÅ°Áö°¡ ¿ä±¸µË´Ï´Ù, ¹ÙÀ̳ʸ®¸¦ ã¾Ò½À´Ï´Ù\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" "%2$s-%3$s-%4$s ÀÇ %1$s ½ºÅ©¸³Æ®¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, waitpid°¡ %" "5$s (À»)¸¦ ¹ÝȯÇÏ¿´½À´Ï´Ù \n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" "%2$s-%3$s-%4$s ÀÇ %1$s ½ºÅ©¸³Æ®¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %" "5$d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "%s: %s-%s-%s (ÀÌ)°¡ %d ÀÇ ÆÄÀÏÀ» °®°í ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" "%s: %s ½ºÅ©¸³Æ®¸´(scriptlet)°¡ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s (À»)¸¦ »ý·«ÇÕ´Ï" "´Ù\n" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "¾ÆÄ«À̺긦 Ǫ´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "%s (ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n" @@ -2878,13 +2878,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "¼­¸í: size(%d)+pad(%d)\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" @@ -2899,17 +2899,17 @@ msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "ÆÐÅ°Áö¿¡ ±×·ì À̸§°ú id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù (Àý´ë ÀÌ·¸°Ô µÇ¾î¼­´Â ¾ÈµË´Ï´Ù)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "´ÙÀ½À» ãÀ» ¼ö ¾ø½À´Ï´Ù %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s ¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3066,44 +3066,44 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "(±âÁ¸ÀÇ) rpm[23] ÆÐŰ¡°ú ȣȯÇÏ´Â Çì´õ¸¦ »ý¼ºÇÕ´Ï´Ù" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" "DB ÅÂ±× ÃʱâÈ­[dbiTagsInit]: ÀÎÁõµÇÁö ¾ÊÀº ÅÂ±× À̸§: \"%s\" (Àº)´Â ¹«½ÃµË´Ï" "´Ù\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "db%2$d (À»)¸¦ ÀÌ¿ëÇÏ¿© %1$s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù - %3$s (%4$d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "%s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "%3$s (À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "%3$s ¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦ÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3112,115 +3112,115 @@ msgstr "" "·Á¸é --rebuilddb ¿É¼ÇÀ» ÀÌ¿ëÇϽʽÿä\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "ÆÐÅ°ÁöÀÇ ¼ö¸¦ ¼¼´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹ÄÚµå ¹øÈ£ %u (ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u (ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x ÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%2$s À妽º¿¡¼­ \"%1$s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡ÇÏ´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%2$s À妽º¿¡ \"%1$s\" (À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "db3¸¦ À籸Ãà ÇÑ ÈÄ¿¡ %s (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%2$s ¿¡ µ¥ÀÌÅͺ£À̽º %1$s (À»)¸¦ À籸Ãà ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "Àӽà µ¥ÀÌÅͺ£À̽º %s (ÀÌ)°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "dbapi %d (À»)¸¦ ÅëÇØ ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "dbapi %d (À»)¸¦ ÅëÇØ »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "%u ¿¡ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "º¹±¸Çϱâ À§ÇØ $2$s ÀÇ ÆÄÀÏÀ» $1$s ÀÇ ÆÄÀÏ·Î ±³Ã¼ÇÕ´Ï´Ù" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n" diff --git a/po/no.po b/po/no.po index 951fd0a..961de71 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -18,44 +18,44 @@ msgstr "feil med avhengigheter under bygging:\n" msgid "Unable to open spec file %s: %s\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunne ikke åpne tar-rør: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Feil under lesing av spec-fil fra %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Feil under endring av navn fra %s til %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunne ikke kjøre stat på %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "Fil %s er ikke en vanlig fil.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Fil %s ser ikke ut til å være en spec-fil.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Bygger målplattformene: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Bygger for mål %s\n" @@ -825,7 +825,7 @@ msgstr "Kunne ikke msgid "Could not open %s: %s\n" msgstr "Kunne ikke åpne %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" @@ -855,7 +855,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive \"payload\" til %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -1368,17 +1368,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linje %d: Ugyldig nummer: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linje %d: Ugyldig no%s nummer: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linje %d: Ugyldig %s-nummer: %s\n" @@ -1425,92 +1425,92 @@ msgid " failed - " msgstr " feilet - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "JA" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "NEI" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "kan ikke åpne pakkedatabase i %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "pakke %s er allerede installert" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1518,42 +1518,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakke %s er i konflikt: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1603,46 +1603,46 @@ msgstr "klarte ikke msgid "file %s is on an unknown device\n" msgstr "fil %s er på en ukjent enhet\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s lagret som %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s feilet: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s feilet: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s opprettet som %s\n" @@ -1654,7 +1654,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Datatype %d ikke støttet\n" @@ -2239,108 +2239,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omplasser %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ekskluderer multilib-sti %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "eksluderer %s %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "relokerer %s til %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "relokerer katalog %s til %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "kan ikke opprette %%%s %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "kan ikke skrive til %%%s %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "kildepakke forventet, binær funnet\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "kildepakke inneholder ikke en .spec-fil\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: kjører %s-skript (hvis noen)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s feilet\n" @@ -2856,13 +2856,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer katalog %s\n" @@ -2875,17 +2875,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "mangler %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3033,155 +3033,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "generer headere som er kompatible med (gamle) rpm[23] pakker" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan ikke åpne %s-indeks ved bruk av db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "kan ikke åpne %s indeks\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index fe8276f..6bbc8c4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -25,44 +25,44 @@ msgstr "niespe msgid "Unable to open spec file %s: %s\n" msgstr "Nie mo¿na otworzyæ pliku spec: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Otwarcie potoku tara nie powiod³o siê: %s\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Odczytanie pliku spec z %s nie powiod³o siê\n" -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Zmiana nazwy %s na %s nie powiod³a siê\n" -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "stat nie powiod³o siê %s: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Plik: %s nie jest regularnym plikiem\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s nie wygl±da na pakiet RPM\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Budowanie dla platform: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Budowanie dla %s\n" @@ -852,7 +852,7 @@ msgstr "Nie mo msgid "Could not open %s: %s\n" msgstr "Nie mo¿na otworzyæ %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" @@ -882,7 +882,7 @@ msgstr "Nie mo msgid "Unable to write payload to %s: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -1408,17 +1408,17 @@ msgstr "wymu msgid "lookup i18N strings in specfile catalog" msgstr "wyszukaj wpisy I18N w katalogu speca" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "linia %d: B³êdny numer: %s" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linia %d: b³êdny numer no%s: %d" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linia %d: B³êdny numer %s: %s\n" @@ -1466,93 +1466,93 @@ msgid " failed - " msgstr " nie powiod³o siê -" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 #, fuzzy msgid "NO " msgstr "NIE DOBRZE" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "nie mo¿na otworzyæ %s/packages.rpm\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" @@ -1560,42 +1560,42 @@ msgstr "plik %s nie nale #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakiet %s jest w konflikcie: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "usuwanie indeksu grupy\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1647,46 +1647,46 @@ msgstr "nie mo msgid "file %s is on an unknown device\n" msgstr "plik %s jest na nieznanym urz±dzeniu" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linia %d: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ostrze¿enie: %s zapisany jako %s" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "skasowanie katalogu %s nie powiod³o siê" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ostrze¿enie: %s utworzony jako %s" @@ -1699,7 +1699,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Typ danych %d nie jest obs³ugiwany\n" @@ -2321,110 +2321,110 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Ten OS nie jest wspierany: %s" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "wy³±czanie %s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "wy³±czanie %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "nie mo¿na utworzyæ %s" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "nie mo¿na zapisaæ do %s" -#: lib/psm.c:1216 +#: lib/psm.c:1240 #, fuzzy msgid "source package expected, binary found\n" msgstr "spodziewany pakiet ¼ród³owy a nie binarny" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "pakiet ¼ród³owy nie zawiera pliku .spec" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "wykonanie skryptu nie powiod³o siê" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "wykonanie skryptu nie powiod³o siê" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "pakiet: %s-%s-%s test plików = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s nie istnieje - u¿yto grupy root" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " na pliku " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s nie powiod³o siê" @@ -2955,13 +2955,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Blok sygnatury: %d\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" @@ -2980,17 +2980,17 @@ msgstr "" "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê " "zdarzyæ)" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "brak %s\n" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3140,42 +3140,42 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nie mo¿na otworzyæ %s przy %s:%d" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nie mo¿na otworzyæ %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "b³±d usuwania rekordu %s z %s" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3185,115 +3185,115 @@ msgstr "" "nowym formacie" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "b³±d szukania pakietu %s\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "usuwanie indeksu nazw\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "b³±d szukania pakietu %s\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, 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" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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.po b/po/pt.po index 5d4354a..bce97bf 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2000-06-22 01:13+01:00\n" "Last-Translator: José Nuno Coelho Sanarra Pires\n" "Language-Team: pt \n" @@ -18,44 +18,44 @@ msgstr "n msgid "Unable to open spec file %s: %s\n" msgstr "Não consegui abrir ficheiro spec %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Não consegui abrir o 'pipe' para o tar: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Não consegui ler o ficheiro spec do %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Não consegui mudar o nome de %s para %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "Não consegui analisar o %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "O ficheiro %s não é um ficheiro normal.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "O ficheiro %s não parece ser um ficheiro spec.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "A construir plataformas alvo: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "A construir para o alvo %s\n" @@ -823,7 +823,7 @@ msgstr "N msgid "Could not open %s: %s\n" msgstr "Não consigo aceder ao %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "Não consegui gravar o pacote: %s\n" @@ -853,7 +853,7 @@ msgstr "N msgid "Unable to write payload to %s: %s\n" msgstr "Não consegui escrever o conteúdo de %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Gravei: %s\n" @@ -1363,17 +1363,17 @@ msgstr "ignorar a plataforma-alvo" msgid "lookup i18N strings in specfile catalog" msgstr "procurar as mensagens de i18N no catálogo do ficheiro spec" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linha %d: Número inválido: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linha %d: Número no%s inválido: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linha %d: Número %s inválido: %s\n" @@ -1421,7 +1421,7 @@ msgid " failed - " msgstr " falhou - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1430,86 +1430,86 @@ msgstr "" "A dependência \"B\" precisa duma época (assumindo a mesma que \"A\")\n" "\t %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 #, fuzzy msgid "NO " msgstr "NÃO-OK" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "não consigo abrir a base de dados Packages em %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "o pacote %s já está instalado" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s SIM (ficheiros adicionados)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s SIM (oferecidos para adição)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-3s (em cache)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s SIM (ficheiros db)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s SI (oferecidos pelo db)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s SIM (pacote db)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NÃO\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) adicionado à cache de dependências.\n" @@ -1517,42 +1517,42 @@ msgstr "%s: (%s, %s) adicionado #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "requisito %s-%s-%s do pacote não satisfeito: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "o pacote %s está em conflito: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "=========== a guardar as relações do tsort\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== só os sucessores (ordem de apresentação)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "CICLO:\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== a prosseguir o tsort ...\n" @@ -1604,46 +1604,46 @@ msgstr "falhei ao aceder ao %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "o ficheiro %s está num dispositivo desconhecido\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linha %d: %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s gravado como %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "não consigo remover a %s - a directoria não está vazia\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "o rmdir da %s falhou: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "o acesso ao %s falhou: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s criado como %s\n" @@ -1655,7 +1655,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "O tipo de dados %d não é suportado\n" @@ -2251,108 +2251,108 @@ msgstr "a(s) chamada(s) de pr msgid "unknown error %d encountered while manipulating package %s" msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== mudanças de local\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d excluir o %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d mudar de local %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "a exclur a directoria 'multilib' %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "a excluir o %s %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "a mudar o %s para %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "a mudar a directoria %s para %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "não consigo criar o %s: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "não consigo escrever em %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "o pacote de código-fonte não contem um ficheiro .spec\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "a correr os programas de pós-instalação (se existirem)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "pacote: teste dos ficheiros do %s-%s-%s = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "o utilizador %s não existe - a usar o root\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "o grupo %s não existe - a usar o root\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "a abertura do pacote falhou%s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " no ficheiro " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "falhei ao aceder ao %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "O %s falhou\n" @@ -2869,13 +2869,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "'Pad' ou preenchimento da assinatura: %d\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ignorado devido à opção missingok\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "a excluir a directoria %s\n" @@ -2888,17 +2888,17 @@ msgstr "o pacote n msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "o pacote não tem o nome do grupo nem as listas de IDs (nunca deve ocorrer)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "falta %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Dependências não satisfeitas para o %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3052,155 +3052,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "gerar os cabeçalhos compatíveis com o formato do rpm[23]" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: nome de opção não reconhecido: \"%s\" ignorado\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "não consigo abrir o índice de %s usando o db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "não consigo abrir o índice do %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "erro(%d) ao guardar o registo %s em %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "erro(%d) ao remover o registo %s do %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "não foi definido o dbpath\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "está presente uma base de dados antiga; use o --rebuildb para gerar uma base de dados no novo formato\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "erro(%d) ao contar os pacotes\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "o número do registo %d na base de dados está errado -- a ignorar.\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: não consigo ler o cabeçalho em 0x%x\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "a remover o \"%s\" do índice %s.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "a remover %d registos do índice %s.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "erro(%d) ao criar uma nova instância do pacote\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "a adicionar o \"%s\" ao índice %s.\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "a adicionar %d registos ao índice %s.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "não foi definido o dbpath" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "a reconstruir a base de dados %s em %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "A base de dados temporária %s já existe\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "a criar a directoria %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "a criar a directoria %s: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "a abrir a base de dados antiga com a dbapi %d\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "a abrir a base de dados nova com a dbapi %d\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "não consigo adicionar o registo originalmente em %d\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "falhou a reconstrução da base de dados: a base de dados original mantém-se\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "falhou a substituição da base de dados antiga pela nova!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "a remover a directoria %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "falhou a remoção da directoria %s: %s\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9bb23b8..6d327b0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" #: build.c:36 #, fuzzy @@ -18,47 +18,47 @@ msgid "Unable to open spec file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "No consegui abrir: %s\n" # , c-format #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "No consegui abrir: %s\n" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "no foi passado pacote para instalao" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "instale pacote" @@ -911,7 +911,7 @@ msgid "Could not open %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "No consegui abrir: %s\n" @@ -946,7 +946,7 @@ msgstr "No consegui abrir: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1519,18 +1519,18 @@ msgid "lookup i18N strings in specfile catalog" msgstr "" # , c-format -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "No consegui abrir: %s\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1578,93 +1578,93 @@ msgid " failed - " msgstr "Construo falhou.\n" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" # , c-format -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "No consegui abrir: %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "no foi passado pacote para instalao" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1672,42 +1672,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "no foi passado pacote para instalao" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "no foi passado pacote para desinstalao" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1760,50 +1760,50 @@ msgstr "No consegui abrir: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" # , c-format -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "No consegui abrir: %s\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Construo falhou.\n" # , c-format -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "No consegui abrir: %s\n" @@ -1815,7 +1815,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2445,7 +2445,7 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" @@ -2457,13 +2457,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "RPM verso %s\n" # , c-format -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "No consegui abrir: %s\n" @@ -2476,7 +2476,7 @@ msgstr "No consegui abrir: %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "RPM verso %s\n" @@ -2489,94 +2489,94 @@ msgstr "RPM verso %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "RPM verso %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" # , c-format -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "pesquise o pacote ao qual pertence" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "no execute nenhum estgio" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "no foi passado pacote para instalao" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "Construo falhou.\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "Construo falhou.\n" @@ -3135,7 +3135,7 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3149,7 +3149,7 @@ msgstr "" # "Content-Transfer-Encoding: 8-bit\n" # , c-format #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM verso %s\n" @@ -3162,17 +3162,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3323,154 +3323,154 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "no foi passado pacote para desinstalao" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3483,13 +3483,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM verso %s\n" # , c-format -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "No consegui abrir: %s\n" diff --git a/po/ro.po b/po/ro.po index 87d6138..7682da3 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -18,44 +18,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -811,7 +811,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -841,7 +841,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1349,17 +1349,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1406,92 +1406,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1499,42 +1499,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1584,46 +1584,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1635,7 +1635,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2207,108 +2207,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2822,13 +2822,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2841,17 +2841,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -2999,155 +2999,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index c5ef178..6aac128 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index f3dbd06..ca1de4e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-08-29 13:55-0400\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -20,44 +20,44 @@ msgstr " msgid "Unable to open spec file %s: %s\n" msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ËÁÎÁÌÁ tar: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÉÚ %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "îÅ ÏÂÙÞÎÙÊ ÆÁÊÌ: %s.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "æÁÊÌ %s ÎÅ ÐÏÈÏÖ ÎÁ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "ðÌÁÔÆÏÒÍÙ ÄÌÑ ÓÂÏÒËÉ: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "óÂÏÒËÁ ÄÌÑ ÐÌÁÔÆÏÒÍÙ %s\n" @@ -834,7 +834,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n" @@ -864,7 +864,7 @@ msgstr " msgid "Unable to write payload to %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "úÁÐÉÓÁÎ: %s\n" @@ -1385,17 +1385,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n" @@ -1442,7 +1442,7 @@ msgid " failed - " msgstr "ÎÅ ÕÄÁÌÏÓØ - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1451,85 +1451,85 @@ msgstr "" "ÄÌÑ ÚÁ×ÉÓÉÍÏÓÔÉ \"B\" ÎÕÖÎÏ ÕËÁÚÁÔØ \"epoch\" (ÔÁË ÖÅ ËÁË ÄÌÑ \"A\")\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "äá" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "îåT" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s YES (added files)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s YES (added provide)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (cached)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s YES (rpmrc provides)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s YES (rpmlib provides)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s YES (db files)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s YES (db provides)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s YES (db package)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NO\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n" @@ -1537,44 +1537,44 @@ msgstr "%s: (%s, %s) #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, " "ÇÌÕÂÉÎÁ)\n" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "ãéëì:\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n" @@ -1626,47 +1626,47 @@ msgstr " msgid "file %s is on an unknown device\n" msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s ÓÏÚÄÁÎ ËÁË %s\n" @@ -1678,7 +1678,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉÎ ÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n" @@ -2267,108 +2267,108 @@ msgstr " msgid "unknown error %d encountered while manipulating package %s" msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ÉÓËÌÀÞÅÎ %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, waitpid() ×ÏÚ×ÒÁÔÉÌ %s\n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " ÎÁ ÆÁÊÌÅ " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n" @@ -2886,13 +2886,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n" @@ -2909,17 +2909,17 @@ msgstr "" "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÇÒÕÐÐ, ÎÉ ÓÐÉÓËÁ ÉÈ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× (ÔÁËÏÇÏ ÎÅ ÄÏÌÖÎÏ " "ÂÙÔØ)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: ÎÅÐÒÁ×ÉÌØÎÁÑ ÐÏÄÐÉÓØ ÏÂÌÁÓÔÉ ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ\n" @@ -3075,41 +3075,41 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "ÓÏÚÄÁÔØ ÚÁÇÏÌÏ×ËÉ, ÓÏ×ÍÅÓÔÉÍÙÅ Ó (ÕÓÔÁÒÅ×ÛÉÍÉ) ÐÁËÅÔÁÍÉ rpm[23]" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: ÉÍÑ ËÌÀÞÁ \"%s\" ÎÅ ÉÚ×ÅÓÔÎÏ, ÉÇÎÏÒÉÒÕÅÔÓÑ\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s ÉÓÐÏÌØÚÕÑ db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3118,115 +3118,115 @@ msgstr "" "ÂÁÚÙ ÄÁÎÎÙÈ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "ÏÛÉÂËÁ(%d) ÐÒÉ ÐÏÄÓÞ£ÔÅ ÐÁËÅÔÏ×\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ÐÏÌÕÞÅÎ ÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u, ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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 d09872f..60f2001 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -19,44 +19,44 @@ msgstr "nevyrie msgid "Unable to open spec file %s: %s\n" msgstr "Nie je mo¾né otvori» spec súbor: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Otvorenie rúry pre tar zlyhalo: %s\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Nie je mo¾né preèíta» spec súbor z %s\n" -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Nie je mo¾né premenova» %s na %s: %s\n" -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "nepodarilo sa zisti» stav %s: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Súbor nie je obyèajný súbor: %s\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s zrejme nie je RPM balík\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, fuzzy, c-format msgid "Building target platforms: %s\n" msgstr "predefinova» cieµovú platformu" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "vyhµadáva sa balík %s\n" @@ -850,7 +850,7 @@ msgstr "Nie je mo msgid "Could not open %s: %s\n" msgstr "Otvorenie %s zlyhalo\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" @@ -880,7 +880,7 @@ msgstr "Nie je mo msgid "Unable to write payload to %s: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Zapísané: %s\n" @@ -1407,17 +1407,17 @@ msgstr "predefinova msgid "lookup i18N strings in specfile catalog" msgstr "pre preklad re»azcov pou¾i» katalóg správ spec-súborov" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "riadok %d: Chybné èíslo: %s" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "riadok %d: Chybné no%s èíslo: %d" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "riadok %d: Chybné %s èíslo: %s\n" @@ -1465,93 +1465,93 @@ msgid " failed - " msgstr " zlyhalo - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 #, fuzzy msgid "NO " msgstr "NIE JE V PORIADKU" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "nie je mo¾né otvori» %s/packages.rpm\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "balík %s nie je nain¹talovaný\n" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" @@ -1559,42 +1559,42 @@ msgstr "s #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "balík %s koliduje: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "odstraòuje sa index skupín\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1646,46 +1646,46 @@ msgstr "nepodarilo sa otvori msgid "file %s is on an unknown device\n" msgstr "súbor %s sa nachádza na neznámom zariadení" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "riadok %d: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varovanie: %s uchovaný ako %s" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s zlyhalo: %s" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varovanie: %s vytvorené ako %s" @@ -1698,7 +1698,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Typ údajov %d nie je podorovaný\n" @@ -2318,110 +2318,110 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vynechaný: %s" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "presúva sa %s do %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "vynecháva sa %s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "vynecháva sa %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/psm.c:1216 +#: lib/psm.c:1240 #, fuzzy msgid "source package expected, binary found\n" msgstr "oèakávaný zdrojový balík, nájdený binárny" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "balík: %s-%s-%s test súborov = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - pou¾ije sa root" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalenie archívu zlyhalo%s%s: %s" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " pre súbor " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s zlyhalo" @@ -2952,13 +2952,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Doplnenie podpisu: %d\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" @@ -2977,17 +2977,17 @@ msgstr "" "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa " "nikdy sta»)" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "chýbajúce %s\n" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3137,42 +3137,42 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nie je mo¾né otvori» %s na %s:%d" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nie je mo¾né otvori» %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "chyba pri odstraòovaní záznamu %s z %s" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3182,115 +3182,115 @@ msgstr "" "databázy v novom formáte" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "chyba pri hµadaní balíka %s\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuje sa index názvov\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba pri hµadaní balíka %s\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáza %s u¾ existuje" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, 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" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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 d43e5fc..a97eb44 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.176 2001/10/27 22:31:17 jbj Exp $ +# $Id: sl.po,v 1.177 2001/10/28 22:18:30 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -23,44 +23,44 @@ msgstr "izdelava soodvisnosti je bila neuspe msgid "Unable to open spec file %s: %s\n" msgstr "Datoteke s specifikacijami %s ni mo¾no odpreti: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Povezava s programom tar je bila neuspe¹na: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Neuspe¹no branje datoteke s specifikacijami iz %s" -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Preimenovanje %s v %s je bilo neuspe¹no: %m" -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "status %s ni na voljo: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Datoteka ni obièajna datoteka: %s\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Ne ka¾e, da je %s datoteka s specifikacijami." #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Izgradnja za ciljna strojna okolja: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Izgradnja za ciljni sistem %s\n" @@ -848,7 +848,7 @@ msgstr "Ikone %s ni mo msgid "Could not open %s: %s\n" msgstr "Ni mo¾no odpreti %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ni mo¾no zapisati paketa: %s" @@ -878,7 +878,7 @@ msgstr "Ikone %s ni mo msgid "Unable to write payload to %s: %s\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -1408,17 +1408,17 @@ msgstr "brez upo msgid "lookup i18N strings in specfile catalog" msgstr "upo¹tevanje internacionalizirana sporoèila v katalogu spec" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "vrstica %d: Napaèno ¹tevilo: %s" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "vrstica %d: Napaèno ¹tevilo no%s: %d" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n" @@ -1466,7 +1466,7 @@ msgid " failed - " msgstr " neuspe¹no - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1475,86 +1475,86 @@ msgstr "" "odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 #, fuzzy msgid "NO " msgstr "NI DOBRO" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "paket %s-%s-%s je ¾e name¹èen" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, fuzzy, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s DA (dodane datoteke)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s DA (dodane ponudbe)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-3s (predpomnjeno)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, fuzzy, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s DA (rpmrc ponudbe)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s DA (rpmlib ponudbe)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s DA (db datoteke)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, fuzzy, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s DA (db ponudbe)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %s zadovoljen ob paketih db.\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NE\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n" @@ -1562,42 +1562,42 @@ msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s jw v sporu z: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "odstranjujemo seznam skupin\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1649,46 +1649,46 @@ msgstr "neuspe msgid "file %s is on an unknown device\n" msgstr "datoteka %s se nahaja na neznani napravi" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "vrstica %d: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "opozorilo: %s shranjen kot %s" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ni mo¾no odstraniti %s - imenik ni prazen" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "odstranitev imenika %s je bila neuspe¹na: %s" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "opozorilo: %s ustvarjen kot %s" @@ -1701,7 +1701,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Tip podatkov %d ni podprt\n" @@ -2319,110 +2319,110 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je izkljuèen: %s" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "premikanje %s v %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "premikanje %s v %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "premiokanje imenika %s v %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "ni mo¾no ustvariti %s: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "pisanje na %s ni mo¾no" -#: lib/psm.c:1216 +#: lib/psm.c:1240 #, fuzzy msgid "source package expected, binary found\n" msgstr "prièakovan je bil izvorni paket, najden binarni" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "izvorni paket ne vsebuje datoteke .spec" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "skript se ni uspe¹no izvedel" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "skript se ni uspe¹no izvedel" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paket: %s-%s-%s datoteke test = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "uporabnik %s ne obstaja - uporabljam root" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s ne obstaja - uporabljam root" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " za datoteko " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s neuspe¹en" @@ -2950,13 +2950,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Dol¾. polnila : %d\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "izkljuèevanje imenika %s\n" @@ -2973,17 +2973,17 @@ msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "v paketu manjka tako seznam skupin kot identitet (to se ne sme zgoditi)" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "manjka %s\n" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3139,42 +3139,42 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: neprepoznano ime znaèke: \"%s\" prezrto\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "ni mo¾no odpreti kazala %s z uporabo db%d - %s (%d)" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "ni mo¾no odpreti kazala %s:" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "napaka(%d) pri brisanju zapisa %s iz %s" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3183,117 +3183,117 @@ msgstr "" "da bi staro obliko zbirke podatkov pretvorili v novo po¾enite --rebuilddb" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "napaka(%d) pri ¹tetju paketov" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno." -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ni mo¾no prebrati glave pri 0x%x" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjevanje \"%s\" iz kazala %s.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstranjevanje %d vnosov iz kazala %s\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "napaka(%d) pri iskanju paketa %s\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "dodajanje \"%s\" v kazalo %s.\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "dodajanje %d vnosov v kazalo %s.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiranje stare podatkovne zbirke\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "zapisa ni mo¾no dodati na %d" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n" "istem mestu\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "odstranjevanje imenika: %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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 397bd27..ba5b7fb 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" @@ -15,44 +15,44 @@ msgstr "lo msgid "Unable to open spec file %s: %s\n" msgstr "Ne mogu da otvorim %s za èitanje: %s" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "neuspelo otvaranje %s\n" #. Give up -#: build.c:162 +#: build.c:163 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Neuspelo èitanje %s: %s." -#: build.c:190 +#: build.c:191 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Neuspelo èitanje %s: %s." -#: build.c:229 +#: build.c:230 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "neuspelo otvaranje %s: %s" -#: build.c:234 +#: build.c:235 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s ne lièi na RPM paket\n" -#: build.c:243 +#: build.c:244 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ne lièi na RPM paket\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "gre¹ka potrage za paketom %s\n" @@ -833,7 +833,7 @@ msgstr "Ne mogu da upi msgid "Could not open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ne mogu da upi¹em %s" @@ -863,7 +863,7 @@ msgstr "Ne mogu da upi msgid "Unable to write payload to %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1389,17 +1389,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/spec.c:294 +#: build/spec.c:297 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "pogre¹an broj paketa: %s\n" @@ -1450,92 +1450,92 @@ msgid " failed - " msgstr "PGP omanuo" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, fuzzy, c-format msgid "cannot open Packages database in %s\n" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "paket %s nije instaliran\n" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" @@ -1543,42 +1543,42 @@ msgstr "datoteka %s ne pripada nijednom paketu\n" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paket %s nije naveden u %s" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1630,46 +1630,46 @@ msgstr "neuspelo otvaranje %s: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ne mogu da uklonim %s - direktorijum nije prazan" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "neuspela komanda rmdir %s: %s" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -1681,7 +1681,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2304,109 +2304,109 @@ msgstr "paket %s-%s-%s sadr msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Pribavljam %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:392 +#: lib/psm.c:397 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Pribavljam %s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Pribavljam %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 #, fuzzy msgid "source package contains no .spec file\n" msgstr "upit nad paketom koji ima " -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "neuspelo izvr¹avanje skripta" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "neuspelo izvr¹avanje skripta" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "PGP omanuo" @@ -2941,13 +2941,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" @@ -2960,17 +2960,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, fuzzy, c-format msgid "missing %s" msgstr "nedostaje { posle %" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3120,156 +3120,156 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "ne mogu da proèitam zaglavlje na %d za proveru" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "privremena baza podataka %s veæ postoji" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "ne mogu da dodam slog originalno na %d" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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 6ab45be..189e032 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-09-12 14:18+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -18,44 +18,44 @@ msgstr "ouppfyllda byggberoenden:\n" msgid "Unable to open spec file %s: %s\n" msgstr "Kan inte öppna specfilen %s: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunde inte öppna \"tar\"-rör: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Kunde inte läsa specfil från %s\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Kunde inte byta namn på %s till %s: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunde inte ta status på %s: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "Filen %s är inte en vanlig fil.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Filen %s tycks inte vara en specfil.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Bygger målplattformar: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "Bygger för målet %s\n" @@ -825,7 +825,7 @@ msgstr "Kan inte l msgid "Could not open %s: %s\n" msgstr "Kunde inte öppna %s: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunde inte skriva paket: %s\n" @@ -855,7 +855,7 @@ msgstr "Kan inte l msgid "Unable to write payload to %s: %s\n" msgstr "Kan inte skriva last till %s: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -1370,17 +1370,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "slå upp översatta strängar i specfilkatalog" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "rad %d: Felaktigt tal: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "rad %d: Felaktigt no%s-tal: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "rad %d: Felaktigt %s-tal: %s\n" @@ -1427,7 +1427,7 @@ msgid " failed - " msgstr " misslyckades - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1436,85 +1436,85 @@ msgstr "" "\"B\"-beroendet behöver en epok (antar samma som \"A\")\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "JA" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "NEJ " -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "kan inte öppna paketdatabas i %s\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "paket %s är redan installerat" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s JA (lade till filer)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s JA (lade till tillhandahållande)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (cachad)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s JA (db-filer)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s JA (db-tillhandahållande)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s JA (db-paket)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NEJ\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" @@ -1522,43 +1522,43 @@ msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s står i konflikt: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "tar bort %s-%s-%s \"%s\" från tsort-relationer.\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "========== noterar alla relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== endast efterföljare (presentationsordning)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "LOOP:\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== fortsätter med tsort ...\n" @@ -1610,47 +1610,47 @@ msgstr "kunde inte msgid "file %s is on an unknown device\n" msgstr "filen %s är på en okänd enhet\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "katalog %s skapad med rättigheter %04o.\n" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "arkivfil %s fanns inte i huvudets fillista\n" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s sparades som %s\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s misslyckades: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s misslyckades: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s skapades som %s\n" @@ -1662,7 +1662,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "Datatyp %d stöds inte\n" @@ -2250,109 +2250,109 @@ msgstr "paket %s systemanrop f msgid "unknown error %d encountered while manipulating package %s" msgstr "okänt fel %d uppträdde under behandling av paket %s" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== omflyttningar\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d utesluter %s\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d flyttar om %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "hoppar över multilib-sökväg %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "hoppar över %s %s\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "flyttar %s till %s\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "flyttar katalogen %s till %s\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "kan inte skapa %%%s %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "kan inte skriva till %%%s %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "källpaket förväntades, fann binärpaket\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "källpaket innehåller ingen .spec-fil\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: kör (eventuellt) %s-skript\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" "körning av %s-skript från %s-%s-%s misslyckades, waitpid returnerade %s\n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "%s: %s-%s-%s har %d filer, test = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "användare %s finns inte - använder root\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "grupp %s finns inte - använder root\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "uppackning av arkiv misslyckades%s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " vid fil " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s misslyckades på fil %s: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "%s misslyckades: %s\n" @@ -2871,13 +2871,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" @@ -2893,17 +2893,17 @@ msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "paketet saknar både gruppnamn och id-listor (detta borde aldrig inträffa)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "saknas %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Ouppfyllda beroenden för %s-%s-%s: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n" @@ -3056,41 +3056,41 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "generera huvuden kompatibla med (äldre) rpm[23]-paketering" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: okänt taggnamn: \"%s\" ignorerat\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan inte öppna %s-indexet med db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "kan inte öppna %s-indexet\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fel(%d) när post %s sparades i %s\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "fel(%d) när post %s togs bort ur %s\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "ingen dbpath har satts\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3099,114 +3099,114 @@ msgstr "" "i nytt format\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "fel(%d) när paket räknades\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan inte läsa huvud vid 0x%x\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" från %s-indexet.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "tar bort %d poster från %s-indexet.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fel(%d) vid allokering av ny paketinstans\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-indexet.\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "lägger till %d poster till %s-indexet.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "tar bort %s efter lyckad db3-ombyggnad.\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "tillfällig databas %s existerar redan\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "skapar katalog %s: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "kan inte lägga till post ursprungligen vid %u\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, 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" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, 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 99185a5..e405b93 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -19,44 +19,44 @@ msgstr "i msgid "Unable to open spec file %s: %s\n" msgstr "%s spec dosyasý açýlamadý: %s\n" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar veriyolu açýlamadý: %m\n" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "%s paketinden spec dosyasý okunamadý\n" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s %s olarak deðiþtirilemedi: %m\n" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "%s durum bilgileri alýnamadý: %m\n" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "%s bir normal bir dosya deðil.\n" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s bir spec dosyasý gibi görünmüyor.\n" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "Hedef platformlar derleniyor: %s\n" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "%s için derleniyor\n" @@ -836,7 +836,7 @@ msgstr "%s'den ba msgid "Could not open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "paket yazýlamadý: %s\n" @@ -866,7 +866,7 @@ msgstr "%s'den payload okunamad msgid "Unable to write payload to %s: %s\n" msgstr "%s'e payload yazýlamadý: %s\n" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "Yazýldý: %s\n" @@ -1390,17 +1390,17 @@ msgstr "hedef platforma zorlar" msgid "lookup i18N strings in specfile catalog" msgstr "spec dosyasýndaki i18n iletilerine bakar" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "satýr %d: Numara hatalý: %s\n" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "satýr %d: Hatalý no%s numarasý: %d\n" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "satýr %d: Hatalý %s numarasý: %s\n" @@ -1447,7 +1447,7 @@ msgid " failed - " msgstr " baþarýsýz - " #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, fuzzy, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -1456,85 +1456,85 @@ msgstr "" "\"B\" baðýmlýlýðý bir dönemsellik gerektirir (tabii ki \"A\" da)\n" "\tA %s\tB %s\n" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "EVET" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "HAYIR " -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "%s de Paket veritabaný açýlamadý\n" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, fuzzy, c-format msgid "package %s already added, ignoring\n" msgstr "%s zaten kurulu" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s EVET (dosyalar eklendi)\n" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s EVET (önlem eklendi)\n" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (arabellekli)\n" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s EVET (rpmrc saðlar)\n" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s EVET (rpmlib saðlar)\n" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s EVET (db dosyalarý)\n" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s EVET (db saðlar)\n" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s EVET (db paketi)\n" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s HAYIR\n" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n" @@ -1542,43 +1542,43 @@ msgstr "%s: (%s, %s) Ba #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "%s paketi çeliþiyor: %s\n" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "========== tsort baðýntýlarý kaydediliyor\n" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "========== sadece ardýllar (sunum sýrasý)\n" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "ÇEVRÝM:\n" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "========== tsort sürüyor ...\n" @@ -1630,47 +1630,47 @@ msgstr "%s a msgid "file %s is on an unknown device\n" msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n" -#: lib/fsm.c:300 +#: lib/fsm.c:308 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Pakette bulunmayan dizinler:\n" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%s dizin %04o izinleriyle oluþturuldu.\n" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "%s %s olarak kaydedildi\n" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s / %s bað kaldýrýlamadý: %s\n" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "%s %s olarak oluþturuldu\n" @@ -1682,7 +1682,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "%d veri türü desteklenmiyor\n" @@ -2274,108 +2274,108 @@ msgstr "%s i msgid "unknown error %d encountered while manipulating package %s" msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "========== yeniden konumlama\n" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "%5d %s'i dýþlýyor\n" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "multilib dosya yolu dýþlanýyor %s%s\n" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "%s %s dýþlanýyor\n" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "%s %s'e konumlanýyor\n" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s dizini %s de yeniden konumlanýyor\n" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "%%%s dosyasý oluþturulamýyor: %s\n" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "%%%s dosyasýna yazýlamaz %s\n" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "kaynak paketi .spec dosyasý içermiyor\n" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, waitpid sonucu %s\n" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "kullanýcý %s yok - root kullanýlacak\n" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "grup %s yok - root kullanýlacak\n" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr " dosyada " -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s baþarýsýz\n" @@ -2892,13 +2892,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok flamasýndan dolayý %s atlandý\n" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "%s dizini dýþlanýyor\n" @@ -2914,17 +2914,17 @@ msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "paket hem grup ismi hem de kimlik listelerinden yoksun (bu hiç iyi deðil)\n" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "eksik %s" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: " -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: deðiþmez baþlýk alaný özet denetimi baþarýsýz\n" @@ -3078,41 +3078,41 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "(eski) rpm[23] paketleme ile uyumlu baþlýklarý üretir" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: tanýmlanmamýþ etiket adý: \"%s\" yoksayýldý\n" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "%s indeksi db%d - %s (%d) kullanarak açýlamadý\n" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "%s indeksi açýlamadý\n" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "belirtilmiþ bir dbpath deðeri yok\n" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3121,116 +3121,116 @@ msgstr "" "rebuilddb kullanýn\n" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "paketler taranýrken hata(%d)\n" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x de baþlýk okunamadý\n" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "\"%s\" %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%d girdi %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "yeni paket örneðini tutma hatasý(%d)\n" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "\"%s\" %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%d girdi %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "belirtilmiþ bir dbpath yok" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "geçici veritabaný %s zaten mevcut\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "%s dizini oluþturuluyor\n" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "%s dizini oluþturuluyor: %s\n" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "eski veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "yeni veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "kayýt özgün olarak %u e eklenemedi\n" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n" "yerinde býrakýldý\n" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "%s dizini siliniyor\n" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s dizininin silinmesi baþarýsýz: %s\n" diff --git a/po/uk.po b/po/uk.po index d69c57a..d8d93b7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/wa.po b/po/wa.po index d69c57a..d8d93b7 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/zh.po b/po/zh.po index d69c57a..d8d93b7 100644 --- a/po/zh.po +++ b/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index d69c57a..d8d93b7 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-10-27 18:27-0400\n" +"POT-Creation-Date: 2001-10-28 17:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:143 build.c:155 +#: build.c:144 build.c:156 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:162 +#: build.c:163 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:190 +#: build.c:191 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:229 +#: build.c:230 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:234 +#: build.c:235 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:243 +#: build.c:244 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:298 +#: build.c:299 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:313 +#: build.c:314 #, c-format msgid "Building for target %s\n" msgstr "" @@ -816,7 +816,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:2154 +#: build/pack.c:603 lib/psm.c:2180 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:2420 +#: build/pack.c:683 lib/psm.c:2446 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:227 +#: build/spec.c:230 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:233 +#: build/spec.c:236 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:294 +#: build/spec.c:297 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1411,92 +1411,92 @@ msgid " failed - " msgstr "" #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/depends.c:668 +#: lib/depends.c:687 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" "\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:697 +#: lib/depends.c:716 #, c-format msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "YES" msgstr "" -#: lib/depends.c:698 lib/depends.c:1475 lib/depends.c:1608 +#: lib/depends.c:717 lib/depends.c:1518 lib/depends.c:1651 msgid "NO " msgstr "" -#: lib/depends.c:828 +#: lib/depends.c:856 #, c-format msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/depends.c:1008 +#: lib/depends.c:1038 #, c-format msgid "newer package %s already added, skipping %s\n" msgstr "" -#: lib/depends.c:1013 +#: lib/depends.c:1043 #, c-format msgid "package %s already added, ignoring\n" msgstr "" -#: lib/depends.c:1018 +#: lib/depends.c:1048 #, c-format msgid "older package %s already added, replacing with %s\n" msgstr "" -#: lib/depends.c:1269 +#: lib/depends.c:1307 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1380 +#: lib/depends.c:1423 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1474 +#: lib/depends.c:1517 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1503 +#: lib/depends.c:1546 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1520 +#: lib/depends.c:1563 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1544 +#: lib/depends.c:1587 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1557 +#: lib/depends.c:1600 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1571 +#: lib/depends.c:1614 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1587 +#: lib/depends.c:1630 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1608 +#: lib/depends.c:1651 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" @@ -1504,42 +1504,42 @@ msgstr "" #. requirements are satisfied. #. @switchbreak@ #. requirements are not satisfied. -#: lib/depends.c:1681 +#: lib/depends.c:1724 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1760 +#: lib/depends.c:1803 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:2013 +#: lib/depends.c:2058 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:2163 +#: lib/depends.c:2212 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:2223 +#: lib/depends.c:2272 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2273 +#: lib/depends.c:2322 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2326 +#: lib/depends.c:2375 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2356 +#: lib/depends.c:2405 msgid "========== continuing tsort ...\n" msgstr "" @@ -1589,46 +1589,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:300 +#: lib/fsm.c:308 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:302 +#: lib/fsm.c:310 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1162 +#: lib/fsm.c:1171 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1443 +#: lib/fsm.c:1452 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1564 lib/fsm.c:1692 +#: lib/fsm.c:1573 lib/fsm.c:1701 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1718 +#: lib/fsm.c:1727 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1724 +#: lib/fsm.c:1733 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1734 +#: lib/fsm.c:1743 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1762 #, c-format msgid "%s created as %s\n" msgstr "" @@ -1640,7 +1640,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:973 +#: lib/header.c:351 lib/header_internal.c:161 lib/psm.c:997 #, c-format msgid "Data type %d not supported\n" msgstr "" @@ -2212,108 +2212,108 @@ msgstr "" msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/psm.c:315 +#: lib/psm.c:320 msgid "========== relocations\n" msgstr "" -#: lib/psm.c:319 +#: lib/psm.c:324 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/psm.c:322 +#: lib/psm.c:327 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/psm.c:392 +#: lib/psm.c:397 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/psm.c:458 +#: lib/psm.c:463 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/psm.c:468 +#: lib/psm.c:473 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/psm.c:547 +#: lib/psm.c:552 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/psm.c:1170 +#: lib/psm.c:1194 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:1176 +#: lib/psm.c:1200 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:1216 +#: lib/psm.c:1240 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1329 +#: lib/psm.c:1353 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:1437 +#: lib/psm.c:1463 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:1605 +#: lib/psm.c:1631 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:1612 +#: lib/psm.c:1638 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1959 +#: lib/psm.c:1985 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:2076 +#: lib/psm.c:2102 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:2191 +#: lib/psm.c:2217 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2200 +#: lib/psm.c:2226 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:2241 +#: lib/psm.c:2267 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:2242 +#: lib/psm.c:2268 msgid " on file " msgstr "" -#: lib/psm.c:2428 +#: lib/psm.c:2454 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:2431 +#: lib/psm.c:2457 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2827,13 +2827,13 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:309 +#: lib/transaction.c:311 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:935 +#: lib/transaction.c:937 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -2846,17 +2846,17 @@ msgstr "" msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:420 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:515 +#: lib/verify.c:517 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:560 +#: lib/verify.c:562 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" @@ -3004,155 +3004,155 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:126 +#: rpmdb/rpmdb.c:129 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:380 +#: rpmdb/rpmdb.c:383 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:402 +#: rpmdb/rpmdb.c:405 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:494 +#: rpmdb/rpmdb.c:497 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:625 +#: rpmdb/rpmdb.c:628 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:635 +#: rpmdb/rpmdb.c:638 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:892 +#: rpmdb/rpmdb.c:902 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1034 +#: rpmdb/rpmdb.c:1046 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1291 +#: rpmdb/rpmdb.c:1311 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2068 rpmdb/rpmdb.c:3321 +#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2121 +#: rpmdb/rpmdb.c:2141 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2391 +#: rpmdb/rpmdb.c:2411 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2463 +#: rpmdb/rpmdb.c:2483 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2472 +#: rpmdb/rpmdb.c:2492 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2673 +#: rpmdb/rpmdb.c:2693 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2754 +#: rpmdb/rpmdb.c:2774 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2765 +#: rpmdb/rpmdb.c:2785 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3207 +#: rpmdb/rpmdb.c:3227 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3240 +#: rpmdb/rpmdb.c:3260 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3267 +#: rpmdb/rpmdb.c:3287 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3271 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3297 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3279 +#: rpmdb/rpmdb.c:3299 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3286 +#: rpmdb/rpmdb.c:3306 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3317 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3361 +#: rpmdb/rpmdb.c:3381 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3379 +#: rpmdb/rpmdb.c:3399 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3387 +#: rpmdb/rpmdb.c:3407 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3389 +#: rpmdb/rpmdb.c:3409 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3419 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3401 +#: rpmdb/rpmdb.c:3421 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/rpm.spec b/rpm.spec index f0cc140..a7fbe2c 100644 --- a/rpm.spec +++ b/rpm.spec @@ -538,5 +538,8 @@ fi - lazy rpmdb open/close through transaction methods (mostly anyways). - no-brainer refcounts for rpmdb object. - check added header against transaction set, replace if newer. -- transaction sets cerated in cli main. +- transaction sets created in cli main. - no-brainer refcounts for ts object. +- memory indices for dependency check are typedef'd and abstract'd. +- no-brainer refcounts for fi object, debug the mess. +- dump the header early in transaction, recreate fi before installing. diff --git a/rpm.spec.in b/rpm.spec.in index fe14259..be8b5ec 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -540,3 +540,6 @@ fi - check added header against transaction set, replace if newer. - transaction sets created in cli main. - no-brainer refcounts for ts object. +- memory indices for dependency check are typedef'd and abstract'd. +- no-brainer refcounts for fi object, debug the mess. +- dump the header early in transaction, recreate fi before installing. diff --git a/rpmdb/rpmdb.c b/rpmdb/rpmdb.c index c865861..16b6a1d 100644 --- a/rpmdb/rpmdb.c +++ b/rpmdb/rpmdb.c @@ -6,6 +6,9 @@ #include "system.h" /*@unchecked@*/ +static int _rpmdb_debug = 0; + +/*@unchecked@*/ static int _debug = 0; #define INLINE @@ -817,7 +820,13 @@ int rpmdbClose(rpmdb db) int dbix; int rc = 0; - if (db == NULL || --db->nrefs > 0) + if (db == NULL) + return 0; + + (void) rpmdbUnlink(db, "rpmdbClose"); + + /*@-usereleased@*/ + if (db->nrefs > 0) return 0; if (db->_dbi) @@ -836,6 +845,7 @@ int rpmdbClose(rpmdb db) db->db_home = _free(db->db_home); db->_dbi = _free(db->_dbi); /*@-refcounttrans@*/ db = _free(db); /*@=refcounttrans@*/ + /*@=usereleased@*/ return rc; } @@ -902,8 +912,10 @@ rpmdb newRpmdb(/*@kept@*/ /*@null@*/ const char * root, db->db_filter_dups = _db_filter_dups; db->db_ndbi = dbiTagsMax; db->_dbi = xcalloc(db->db_ndbi, sizeof(*db->_dbi)); - db->nrefs = 1; - /*@-globstate@*/ return db; /*@=globstate@*/ + db->nrefs = 0; + /*@-globstate@*/ + return rpmdbLink(db, "rpmdbCreate"); + /*@=globstate@*/ } /*@=mods@*/ @@ -1054,16 +1066,24 @@ exit: return rc; } -rpmdb rpmdbLink(rpmdb db) +rpmdb XrpmdbUnlink(rpmdb db, const char * msg, const char * fn, unsigned ln) { - db->nrefs++; - /*@-refcounttrans@*/ return db; /*@=refcounttrans@*/ +/*@-modfilesys@*/ +if (_rpmdb_debug) +fprintf(stderr, "--> db %p -- %d %s at %s:%u\n", db, db->nrefs, msg, fn, ln); +/*@=modfilesys@*/ + db->nrefs--; + return NULL; } -rpmdb rpmdbUnlink(rpmdb db) +rpmdb XrpmdbLink(rpmdb db, const char * msg, const char * fn, unsigned ln) { - db->nrefs--; - return NULL; + db->nrefs++; +/*@-modfilesys@*/ +if (_rpmdb_debug) +fprintf(stderr, "--> db %p ++ %d %s at %s:%u\n", db, db->nrefs, msg, fn, ln); +/*@=modfilesys@*/ + /*@-refcounttrans@*/ return db; /*@=refcounttrans@*/ } /* XXX python/rpmmodule.c */ @@ -1602,7 +1622,7 @@ rpmdbMatchIterator rpmdbFreeIterator(rpmdbMatchIterator mi) mi->mi_dbc = NULL; mi->mi_set = dbiFreeIndexSet(mi->mi_set); mi->mi_keyp = _free(mi->mi_keyp); - mi->mi_db = rpmdbUnlink(mi->mi_db); + mi->mi_db = rpmdbUnlink(mi->mi_db, "matchIterator"); mi = _free(mi); return mi; } @@ -2305,7 +2325,7 @@ fprintf(stderr, "*** RMW %s %p\n", tagName(rpmtag), dbi->dbi_rmw); mi->mi_keylen = keylen; /*@-assignexpose@*/ - mi->mi_db = rpmdbLink(db); + mi->mi_db = rpmdbLink(db, "matchIterator"); /*@=assignexpose@*/ mi->mi_rpmtag = rpmtag; -- 2.7.4