From 113948c75c111b27d168719573d5c29c92e7dc0d Mon Sep 17 00:00:00 2001 From: jbj Date: Thu, 27 Apr 2000 01:11:48 +0000 Subject: [PATCH] Sanity and API clean up. (make dist) CVS patchset: 3705 CVS date: 2000/04/27 01:11:48 --- lib/depends.c | 11 -- lib/install.c | 15 +-- lib/query.c | 54 +-------- lib/rpmdb.c | 12 +- lib/rpmdb.h | 40 ++++--- lib/rpminstall.c | 44 ------- lib/rpmlib.h | 149 +++++++++++++----------- lib/transaction.c | 68 ----------- lib/uninstall.c | 2 - po/cs.po | 334 ++++++++++++++++++++++++++--------------------------- po/de.po | 334 ++++++++++++++++++++++++++--------------------------- po/fi.po | 331 ++++++++++++++++++++++++++--------------------------- po/fr.po | 315 +++++++++++++++++++++++--------------------------- po/ja.po | 336 ++++++++++++++++++++++++++---------------------------- po/pl.po | 333 ++++++++++++++++++++++++++--------------------------- po/pt_BR.po | 320 ++++++++++++++++++++++++--------------------------- po/rpm.pot | 236 ++++++++++++++++++-------------------- po/ru.po | 333 ++++++++++++++++++++++++++--------------------------- po/sk.po | 333 ++++++++++++++++++++++++++--------------------------- po/sl.po | 335 ++++++++++++++++++++++++++--------------------------- po/sr.po | 334 ++++++++++++++++++++++++++--------------------------- po/sv.po | 335 ++++++++++++++++++++++++++--------------------------- po/tr.po | 334 ++++++++++++++++++++++++++--------------------------- python/upgrade.c | 2 +- 24 files changed, 2297 insertions(+), 2643 deletions(-) diff --git a/lib/depends.c b/lib/depends.c index c9fb40b..fe47b4d 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -612,7 +612,6 @@ int rpmtransAddPackage(rpmTransactionSet rpmdep, Header h, FD_t fd, const void * key, int upgrade, rpmRelocation * relocs) { /* this is an install followed by uninstalls */ - dbiIndexSet matches = NULL; const char * name; int count; const char ** obsoletes; @@ -670,11 +669,6 @@ int rpmtransAddPackage(rpmTransactionSet rpmdep, Header h, FD_t fd, for (j = 0; j < count; j++) { - if (matches) { - dbiFreeIndexSet(matches); - matches = NULL; - } - /* XXX avoid self-obsoleting packages. */ if (!strcmp(name, obsoletes[j])) continue; @@ -708,11 +702,6 @@ int rpmtransAddPackage(rpmTransactionSet rpmdep, Header h, FD_t fd, free(obsoletes); } - if (matches) { - dbiFreeIndexSet(matches); - matches = NULL; - } - return 0; } diff --git a/lib/install.c b/lib/install.c index bef1d7f..09b986e 100644 --- a/lib/install.c +++ b/lib/install.c @@ -7,7 +7,6 @@ #include "cpio.h" #include "install.h" #include "misc.h" -#include "rpmdb.h" /* XXX for rpmdbAdd/rpmdbRemove/rpmdbUpdateRecord */ struct callbackInfo { unsigned long archiveSize; @@ -677,9 +676,8 @@ int rpmInstallSourcePackage(const char * rootdir, FD_t fd, rpmInstallLoadMacros(h); rc = installSources(h, rootdir, fd, specFile, notify, notifyData); - if (h != NULL) { + if (h) headerFree(h); - } return rc; } @@ -701,7 +699,6 @@ int installBinaryPackage(const char * rootdir, rpmdb db, FD_t fd, Header h, char * fileStates = NULL; int i; int otherOffset = 0; - dbiIndexSet matches = NULL; int scriptArg; int stripSize = 1; /* strip at least first / for cpio */ struct fileMemory *fileMem = NULL; @@ -939,17 +936,13 @@ int installBinaryPackage(const char * rootdir, rpmdb db, FD_t fd, Header h, rc = 0; exit: - if (matches) { - dbiFreeIndexSet(matches); - matches = NULL; - } if (rootdir && currDir) { /*@-unrecog@*/ chroot("."); /*@=unrecog@*/ chdir(currDir); } - if (fileMem) freeFileMemory(fileMem); - if (rc) { + if (fileMem) + freeFileMemory(fileMem); + if (rc) headerFree(h); - } return rc; } diff --git a/lib/query.c b/lib/query.c index ed5174b..3f1a831 100644 --- a/lib/query.c +++ b/lib/query.c @@ -418,7 +418,6 @@ void rpmDisplayQueryTags(FILE * f) } } -#ifndef DYING int showMatches(QVA_t *qva, rpmdbMatchIterator mi, QVF_t showPackage) { Header h; @@ -432,48 +431,22 @@ int showMatches(QVA_t *qva, rpmdbMatchIterator mi, QVF_t showPackage) rpmdbFreeIterator(mi); return ec; } -#else -int showMatches(QVA_t *qva, rpmdb db, dbiIndexSet matches, QVF_t showPackage) -{ - Header h; - int ec = 0; - int i; - - for (i = 0; i < dbiIndexSetCount(matches); i++) { - int rc; - unsigned int recOffset = dbiIndexRecordOffset(matches, i); - if (recOffset == 0) - continue; - rpmMessage(RPMMESS_DEBUG, _("package record number: %u\n"), recOffset); - - h = rpmdbGetRecord(db, recOffset); - if (h == NULL) { - fprintf(stderr, _("error: could not read database record\n")); - ec = 1; - } else { - if ((rc = showPackage(qva, db, h)) != 0) - ec = rc; - headerFree(h); - } - } - return ec; -} -#endif /* * XXX Eliminate linkage loop into librpmbuild.a */ +/** + */ int (*parseSpecVec) (Spec *specp, const char *specFile, const char *rootdir, const char *buildRoot, int inBuildArch, const char *passPhrase, char *cookie, int anyarch, int force) = NULL; +/** + */ void (*freeSpecVec) (Spec spec) = NULL; int rpmQueryVerify(QVA_t *qva, enum rpmQVSources source, const char * arg, rpmdb db, QVF_t showPackage) { -#ifdef DYING - dbiIndexSet matches = NULL; /* XXX DYING */ -#endif rpmdbMatchIterator mi = NULL; Header h; int rc; @@ -682,18 +655,6 @@ int rpmQueryVerify(QVA_t *qva, enum rpmQVSources source, const char * arg, } break; case RPMQV_PACKAGE: -#ifdef DYING - rc = rpmdbFindByLabel(db, arg, &matches); - if (rc == 1) { - retcode = 1; - fprintf(stderr, _("package %s is not installed\n"), arg); - } else if (rc == 2) { - retcode = 1; - fprintf(stderr, _("error looking for package %s\n"), arg); - } else { - retcode = showMatches(qva, db, matches, showPackage); - } -#else /* XXX HACK to get rpmdbFindByLabel out of the API */ mi = rpmdbInitIterator(db, RPMDBI_LABEL, arg, 0); if (mi == NULL) { @@ -702,16 +663,9 @@ int rpmQueryVerify(QVA_t *qva, enum rpmQVSources source, const char * arg, } else { retcode = showMatches(qva, mi, showPackage); } -#endif break; } -#ifdef DYING - if (matches) { /* XXX DYING */ - dbiFreeIndexSet(matches); - matches = NULL; - } -#endif return retcode; } diff --git a/lib/rpmdb.c b/lib/rpmdb.c index 80ae931..1dc5e5a 100644 --- a/lib/rpmdb.c +++ b/lib/rpmdb.c @@ -454,12 +454,12 @@ static inline int dbiRemoveIndexRecord(dbiIndexSet set, dbiIndexRecord rec) { return (numCopied == num); } -/* XXX rpminstall.c, transaction.c */ +/* XXX transaction.c */ unsigned int dbiIndexSetCount(dbiIndexSet set) { return set->count; } -/* XXX rpminstall.c, transaction.c */ +/* XXX transaction.c */ unsigned int dbiIndexRecordOffset(dbiIndexSet set, int recno) { return set->recs[recno].recOffset; } @@ -479,7 +479,7 @@ static inline void dbiIndexRecordOffsetSave(dbiIndexSet set, int recno, unsigned set->recs[recno].recOffset = recoff; } -/* XXX depends.c, install.c, query.c, rpminstall.c, transaction.c */ +/* XXX transaction.c */ void dbiFreeIndexSet(dbiIndexSet set) { if (set) { if (set->recs) free(set->recs); @@ -683,12 +683,6 @@ exit: return rc; } -/* XXX python/upgrade.c */ -int rpmdbOpenForTraversal(const char * prefix, rpmdb * dbp) -{ - return openDatabase(prefix, NULL, dbp, O_RDONLY, 0644, RPMDB_FLAG_MINIMAL); -} - /* XXX python/rpmmodule.c */ int rpmdbOpen (const char * prefix, rpmdb *dbp, int mode, int perms) { diff --git a/lib/rpmdb.h b/lib/rpmdb.h index 4a44ce9..7aacbac 100644 --- a/lib/rpmdb.h +++ b/lib/rpmdb.h @@ -357,37 +357,43 @@ int dbiByteSwapped(dbiIndex dbi); char * db0basename(int rpmtag); /** - * Remove package header from rpm database and indices. - * @param rpmdb rpm database - * @param offset location in Packages dbi - * @param tolerant (legacy) print error messages? - * @return 0 on success */ -int rpmdbRemove(rpmdb db, unsigned int offset, int tolerant); +unsigned int rpmdbGetIteratorFileNum(rpmdbMatchIterator mi); /** - * Add package header to rpm database and indices. * @param rpmdb rpm database - * @param rpmtag rpm tag */ -int rpmdbAdd(rpmdb rpmdb, Header dbentry); +int rpmdbFindFpList(rpmdb rpmdb, fingerPrint * fpList, /*@out@*/dbiIndexSet * matchList, + int numItems); /** + * Destroy set of index database items. + * @param set set of index database items */ -unsigned int rpmdbGetIteratorFileNum(rpmdbMatchIterator mi); +void dbiFreeIndexSet(/*@only@*/ /*@null@*/ dbiIndexSet set); /** - * @param rpmdb rpm database + * Count items in index database set. + * @param set set of index database items + * @return number of items */ -int rpmdbFindFpList(rpmdb rpmdb, fingerPrint * fpList, /*@out@*/dbiIndexSet * matchList, - int numItems); +unsigned int dbiIndexSetCount(dbiIndexSet set); -/* XXX only for the benefit of runTransactions() */ /** - * @param rpmdb rpm database + * Return record offset of header from element in index database set. + * @param set set of index database items + * @param recno index of item in set + * @return record offset of header + */ +unsigned int dbiIndexRecordOffset(dbiIndexSet set, int recno); + +/** + * Return file index from element in index database set. + * @param set set of index database items + * @param recno index of item in set + * @return file index */ -int findMatches(rpmdb rpmdb, const char * name, const char * version, - const char * release, /*@out@*/ dbiIndexSet * matches); +unsigned int dbiIndexRecordFileNumber(dbiIndexSet set, int recno); #ifdef __cplusplus } diff --git a/lib/rpminstall.c b/lib/rpminstall.c index e9b931c..29a5d15 100644 --- a/lib/rpminstall.c +++ b/lib/rpminstall.c @@ -400,9 +400,6 @@ int rpmErase(const char * rootdir, const char ** argv, int transFlags, int interfaceFlags) { rpmdb db; -#ifdef DYING - dbiIndexSet matches = NULL; -#endif int mode; int count; const char ** arg; @@ -429,46 +426,6 @@ int rpmErase(const char * rootdir, const char ** argv, int transFlags, rpmdep = rpmtransCreateSet(db, rootdir); for (arg = argv; *arg; arg++) { -#ifdef DYING - int rc; - int i; - - rc = rpmdbFindByLabel(db, *arg, &matches); - switch (rc) { - case 1: - rpmMessage(RPMMESS_ERROR, _("package %s is not installed\n"), *arg); - numFailed++; - break; - case 2: - rpmMessage(RPMMESS_ERROR, _("searching for package %s\n"), *arg); - numFailed++; - break; - default: - count = 0; - for (i = 0; i < dbiIndexSetCount(matches); i++) - if (dbiIndexRecordOffset(matches, i)) count++; - - if (count > 1 && !(interfaceFlags & UNINSTALL_ALLMATCHES)) { - rpmMessage(RPMMESS_ERROR, _("\"%s\" specifies multiple packages\n"), - *arg); - numFailed++; - break; - } - for (i = 0; i < dbiIndexSetCount(matches); i++) { - unsigned int recOffset = dbiIndexRecordOffset(matches, i); - if (recOffset) { - rpmtransRemovePackage(rpmdep, recOffset); - numPackages++; - } - } - - break; - } - if (matches) { - dbiFreeIndexSet(matches); - matches = NULL; - } -#else /* DYING */ rpmdbMatchIterator mi; /* XXX HACK to get rpmdbFindByLabel out of the API */ @@ -492,7 +449,6 @@ int rpmErase(const char * rootdir, const char ** argv, int transFlags, } } rpmdbFreeIterator(mi); -#endif /* DYING */ } if (!(interfaceFlags & UNINSTALL_NODEPS)) { diff --git a/lib/rpmlib.h b/lib/rpmlib.h index 8a9eae2..17bf571 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -16,38 +16,6 @@ extern "C" { #endif /** - * Destroy set of index database items. - * @param set set of index database items - */ -void dbiFreeIndexSet(/*@only@*/ /*@null@*/ dbiIndexSet set); - -/* XXX API compatibility */ -#define dbiFreeIndexRecord(_a) dbiFreeIndexSet(_a) - -/** - * Count items in index database set. - * @param set set of index database items - * @return number of items - */ -unsigned int dbiIndexSetCount(dbiIndexSet set); - -/** - * Return record offset of header from element in index database set. - * @param set set of index database items - * @param recno index of item in set - * @return record offset of header - */ -unsigned int dbiIndexRecordOffset(dbiIndexSet set, int recno); - -/** - * Return file index from element in index database set. - * @param set set of index database items - * @param recno index of item in set - * @return file index - */ -unsigned int dbiIndexRecordFileNumber(dbiIndexSet set, int recno); - -/** */ int rpmReadPackageInfo(FD_t fd, /*@out@*/ Header * signatures, /*@out@*/ Header * hdr); @@ -358,6 +326,7 @@ typedef enum rpmCallbackType_e { RPMCALLBACK_TRANS_PROGRESS, RPMCALLBACK_TRANS_START, RPMCALLBACK_TRANS_STOP, RPMCALLBACK_UNINST_PROGRESS, RPMCALLBACK_UNINST_START, RPMCALLBACK_UNINST_STOP } rpmCallbackType; + typedef void * (*rpmCallbackFunction)(const Header h, const rpmCallbackType what, const unsigned long amount, @@ -366,51 +335,28 @@ typedef void * (*rpmCallbackFunction)(const Header h, void urlSetCallback(rpmCallbackFunction notify, void *notifyData, int notifyCount); +/* ==================================================================== */ /** * @param dbp address of rpm database */ int rpmdbOpen (const char * root, /*@out@*/ rpmdb * dbp, int mode, int perms); /* 0 on error */ -int rpmdbInit(const char * root, int perms); - /* nonzero on error */ /** - * @param db rpm database */ -void rpmdbClose ( /*@only@*/ rpmdb db); - -/* Databases like this should only have rpmdb*RecNum and rpmdbGetRecord - used on them. Anything else could fail! */ -/** - * @param dbp address of rpm database - */ -int rpmdbOpenForTraversal(const char * prefix, /*@out@*/ rpmdb * dbp); - -#ifdef DYING -/** - * @param db rpm database - */ -Header rpmdbGetRecord(rpmdb db, unsigned int offset); - -/** - * @param db rpm database - */ -int rpmdbFindPackage(rpmdb db, const char * name, - /*@out@*/ dbiIndexSet * matches); +int rpmdbInit(const char * root, int perms); + /* nonzero on error */ -/* these are just convenience functions */ /** * @param db rpm database */ -int rpmdbFindByLabel(rpmdb db, const char * label, - /*@out@*/ dbiIndexSet * matches); -#endif +void rpmdbClose ( /*@only@*/ rpmdb db); /** * Return number of instances of package in rpm database. * @param db rpm database * @param name rpm package name - * @return number of instances of package in database + * @return number of instances */ int rpmdbCountPackages(rpmdb db, const char *name); @@ -480,6 +426,27 @@ Header rpmdbNextIterator(rpmdbMatchIterator mi); /*@only@*/ /*@null@*/ rpmdbMatchIterator rpmdbInitIterator(rpmdb rpmdb, int rpmtag, const void * key, size_t keylen); +/** + * Remove package header from rpm database and indices. + * @param rpmdb rpm database + * @param offset location in Packages dbi + * @param tolerant (legacy) print error messages? + * @return 0 on success + */ +int rpmdbRemove(rpmdb db, unsigned int offset, int tolerant); + +/** + * Add package header to rpm database and indices. + * @param rpmdb rpm database + * @param rpmtag rpm tag + */ +int rpmdbAdd(rpmdb rpmdb, Header dbentry); + +/** + */ +int rpmdbRebuild(const char * root); + +/* ==================================================================== */ /* we pass these around as an array with a sentinel */ typedef struct rpmRelocation_s { const char * oldPath; /* NULL here evals to RPMTAG_DEFAULTPREFIX, */ @@ -487,14 +454,25 @@ typedef struct rpmRelocation_s { const char * newPath; /* NULL means to omit the file completely! */ } rpmRelocation; + +/** + */ int rpmInstallSourcePackage(const char * root, FD_t fd, const char ** specFile, rpmCallbackFunction notify, void * notifyData, char ** cookie); + +/** + */ int rpmVersionCompare(Header first, Header second); -int rpmdbRebuild(const char * root); + +/** + */ int rpmVerifyFile(const char * root, Header h, int filenum, /*@out@*/ int * result, int omitMask); + +/** + */ int rpmVerifyScript(const char * root, Header h, FD_t err); /* Transaction sets are inherently unordered! RPM may reorder transaction @@ -527,16 +505,34 @@ struct rpmDependencyConflict { returns 0 on success, 1 on I/O error, 2 if the package needs capabilities which are not implemented */ + +/** + */ int rpmtransAddPackage(rpmTransactionSet rpmdep, Header h, FD_t fd, /*@owned@*/ const void * key, int update, rpmRelocation * relocs); + +/** + */ void rpmtransAvailablePackage(rpmTransactionSet rpmdep, Header h, /*@owned@*/ const void * key); + +/** + */ void rpmtransRemovePackage(rpmTransactionSet rpmdep, int dboffset); + +/** + */ void rpmtransFree( /*@only@*/ rpmTransactionSet rpmdep); + +/** + */ void rpmtransSetScriptFd(rpmTransactionSet ts, FD_t fd); /* this checks for dependency satisfaction, but *not* ordering */ + +/** + */ int rpmdepCheck(rpmTransactionSet rpmdep, /*@exposed@*/ /*@out@*/ struct rpmDependencyConflict ** conflicts, /*@exposed@*/ /*@out@*/ int * numConflicts); @@ -544,7 +540,13 @@ int rpmdepCheck(rpmTransactionSet rpmdep, /* Orders items, returns error on circle, finals keys[] is NULL. No dependency check is done, use rpmdepCheck() for that. If dependencies are not satisfied a "best-try" ordering is returned. */ + +/** + */ int rpmdepOrder(rpmTransactionSet order); + +/** + */ void rpmdepFreeConflicts( /*@only@*/ struct rpmDependencyConflict * conflicts, int numConflicts); @@ -827,11 +829,8 @@ typedef int (*QVF_t) (QVA_t *qva, rpmdb db, Header h); /** */ -#ifdef DYING -int showMatches(QVA_t *qva, rpmdb db, dbiIndexSet matches, QVF_t showPackage); -#else -int showMatches(QVA_t *qva, /*@only@*/ rpmdbMatchIterator mi, QVF_t showPackage); -#endif +int showMatches(QVA_t *qva, /*@only@*/ /*@null@*/ rpmdbMatchIterator mi, + QVF_t showPackage); #define QUERY_FOR_LIST (1 << 1) #define QUERY_FOR_STATE (1 << 2) @@ -869,6 +868,9 @@ extern struct poptOption rpmVerifyPoptTable[]; * @param db rpm database */ int showVerifyPackage(QVA_t *qva, /*@only@*/ rpmdb db, Header h); + +/** + */ int rpmVerify(QVA_t *qva, enum rpmQVSources source, const char *arg); /* ==================================================================== */ @@ -884,10 +886,19 @@ int rpmVerify(QVA_t *qva, enum rpmQVSources source, const char *arg); #define UNINSTALL_NODEPS (1 << 0) #define UNINSTALL_ALLMATCHES (1 << 1) + +/** + */ int rpmInstall(const char * rootdir, const char ** argv, int installFlags, int interfaceFlags, int probFilter, rpmRelocation * relocations); + +/** + */ int rpmInstallSource(const char * prefix, const char * arg, const char ** specFile, char ** cookie); + +/** + */ int rpmErase(const char * rootdir, const char ** argv, int uninstallFlags, int interfaceFlags); @@ -898,7 +909,13 @@ int rpmErase(const char * rootdir, const char ** argv, int uninstallFlags, #define CHECKSIG_MD5 (1 << 1) #define CHECKSIG_GPG (1 << 2) + +/** + */ int rpmCheckSig(int flags, const char **argv); + +/** + */ int rpmReSign(int add, char *passPhrase, const char **argv); #define ADD_SIGNATURE 1 diff --git a/lib/transaction.c b/lib/transaction.c index e0ae617..b266696 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -756,11 +756,6 @@ static int handleInstInstalledFiles(TFI_t * fi, rpmdb db, uint_16 * otherModes; int numReplaced = 0; -#ifdef DYING - h = rpmdbGetRecord(db, shared->otherPkg); - if (h == NULL) - return 1; -#else rpmdbMatchIterator mi; mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, &shared->otherPkg, sizeof(shared->otherPkg)); @@ -769,7 +764,6 @@ static int handleInstInstalledFiles(TFI_t * fi, rpmdb db, rpmdbFreeIterator(mi); return 1; } -#endif headerGetEntryMinMemory(h, RPMTAG_FILEMD5S, NULL, (void **) &otherMd5s, NULL); @@ -831,11 +825,7 @@ static int handleInstInstalledFiles(TFI_t * fi, rpmdb db, free(otherMd5s); free(otherLinks); -#ifdef DYING - headerFree(h); -#else rpmdbFreeIterator(mi); -#endif fi->replaced = xrealloc(fi->replaced, /* XXX memory leak */ sizeof(*fi->replaced) * (numReplaced + 1)); @@ -852,11 +842,6 @@ static int handleRmvdInstalledFiles(TFI_t * fi, rpmdb db, const char * otherStates; int i; -#ifdef DYING - h = rpmdbGetRecord(db, shared->otherPkg); - if (h == NULL) - return 1; -#else rpmdbMatchIterator mi; mi = rpmdbInitIterator(db, RPMDBI_PACKAGES, &shared->otherPkg, sizeof(shared->otherPkg)); @@ -865,7 +850,6 @@ static int handleRmvdInstalledFiles(TFI_t * fi, rpmdb db, rpmdbFreeIterator(mi); return 1; } -#endif headerGetEntryMinMemory(h, RPMTAG_FILESTATES, NULL, (void **) &otherStates, NULL); @@ -881,11 +865,7 @@ static int handleRmvdInstalledFiles(TFI_t * fi, rpmdb db, fi->actions[fileNum] = FA_SKIP; } -#ifdef DYING - headerFree(h); -#else rpmdbFreeIterator(mi); -#endif return 0; } @@ -1127,11 +1107,6 @@ static void skipFiles(TFI_t * fi, int noDocs) if (s) { languages = (const char **) splitString(s, strlen(s), ':'); xfree(s); -#ifdef DYING - /* XXX LINGUAS/LANG is used by the installer so leave alone for now */ - } else if ((s = getenv("LINGUAS")) || (s = getenv("LANG")) || (s = "en")) { - languages = (const char **) splitString(s, strlen(s), ':'); -#endif } else languages = NULL; @@ -1213,9 +1188,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, int rc, ourrc = 0; struct availablePackage * alp; rpmProblemSet probs; -#ifdef DYING - dbiIndexSet dbi = NULL; -#endif Header * hdrs; int fileCount; int totalFileCount = 0; @@ -1314,29 +1286,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, rpmdbFreeIterator(mi); } -#ifdef DYING - rc = findMatches(ts->db, alp->name, alp->version, alp->release, &dbi); - switch (rc) { - case 2: - if (dbi) { - dbiFreeIndexSet(dbi); - dbi = NULL; - } - return -1; - /*@notreached@*/ break; - case 0: - if (!(ignoreSet & RPMPROB_FILTER_REPLACEPKG)) - psAppend(probs, RPMPROB_PKG_INSTALLED, alp->key, alp->h, NULL, - NULL, 0); - break; - default: - break; - } - if (dbi) { - dbiFreeIndexSet(dbi); - dbi = NULL; - } -#else if (!(ignoreSet & RPMPROB_FILTER_REPLACEPKG)) { rpmdbMatchIterator mi; mi = rpmdbInitIterator(ts->db, RPMTAG_NAME, alp->name, 0); @@ -1349,7 +1298,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, } rpmdbFreeIterator(mi); } -#endif if (headerGetEntry(alp->h, RPMTAG_BASENAMES, NULL, NULL, &fileCount)) totalFileCount += fileCount; @@ -1357,17 +1305,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, /* FIXME: it seems a bit silly to read in all of these headers twice */ /* The ordering doesn't matter here */ -#ifdef DYING - for (i = 0; i < ts->numRemovedPackages; i++) { - Header h; - - if ((h = rpmdbGetRecord(ts->db, ts->removedPackages[i]))) { - if (headerGetEntry(h, RPMTAG_BASENAMES, NULL, NULL, &fileCount)) - totalFileCount += fileCount; - headerFree(h); - } - } -#else { rpmdbMatchIterator mi; Header h; @@ -1380,7 +1317,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, } rpmdbFreeIterator(mi); } -#endif /* =============================================== * Initialize file list: @@ -1416,9 +1352,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, break; case TR_REMOVED: fi->record = ts->order[oc].u.removed.dboffset; -#ifdef DYING - fi->h = rpmdbGetRecord(ts->db, fi->record); -#else { rpmdbMatchIterator mi; mi = rpmdbInitIterator(ts->db, RPMDBI_PACKAGES, &fi->record, sizeof(fi->record)); @@ -1426,7 +1359,6 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, fi->h = headerLink(fi->h); rpmdbFreeIterator(mi); } -#endif if (fi->h == NULL) { /* ACK! */ continue; diff --git a/lib/uninstall.c b/lib/uninstall.c index 63d8fd9..9c8d7dc 100644 --- a/lib/uninstall.c +++ b/lib/uninstall.c @@ -7,7 +7,6 @@ #include "depends.h" /* XXX for headerMatchesDepFlags */ #include "install.h" #include "misc.h" /* XXX for makeTempFile, doputenv */ -#include "rpmdb.h" /* XXX for rpmdbRemove */ static char * SCRIPT_PATH = "PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin"; @@ -452,7 +451,6 @@ static int handleOneTrigger(const char * root, rpmdb db, int sense, Header sourc if (!headerGetEntry(triggeredH, RPMTAG_TRIGGERNAME, NULL, (void **) &triggerNames, &numTriggers)) { - headerFree(triggeredH); return 0; } diff --git a/po/cs.po b/po/cs.po index 7ad336d..fbf4429 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 1998-10-10 10:10+0200\n" "Last-Translator: Pavel Makovec \n" "Language-Team: Czech \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "chyba: nelze otevøít %s%s/packages.rpm\n" @@ -2109,108 +2109,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "polo¾ka 'vy¾aduje' balíèku %s není splnìna: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "balíèek %s koliduje: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "smyèka v øetìzu podmínek: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "nelze èíst hlavièku u %d pro kontrolu závislostí" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "nelze provést statistiku %s: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "probíhá otevírání databázového re¾imu: 0%o\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nelze otevøít %s: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "nelze získat %s zámek k databázi" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "výhradní" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "sdílený" @@ -2249,12 +2244,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2374,111 +2369,111 @@ msgstr "na konci v msgid "(unknown type)" msgstr "(neznámý typ)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, fuzzy, c-format msgid " file: %s action: %s\n" msgstr "soubor %s: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 #, fuzzy msgid "installing a source package\n" msgstr "probíhá instalace binárních balíèkù\n" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "nelze otevøít soubor %s: " -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "nelze otevøít soubor %s: " -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "nelze otevøít soubor %s: " -#: lib/install.c:476 +#: lib/install.c:480 #, fuzzy, c-format msgid "spec file in: %s\n" msgstr "soubor %s: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr "balíèek %s neobsahuje soubory" -#: lib/install.c:560 +#: lib/install.c:564 #, fuzzy, c-format msgid "renaming %s to %s\n" msgstr "Probíhá získávání %s jako %s\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "%s nelze pøejmenovat na %s: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n" -#: lib/install.c:768 +#: lib/install.c:770 #, fuzzy msgid "stopping install as we're running --test\n" msgstr "probíhá zastavení zdrojové instalace, nebo» jde jen o testování\n" -#: lib/install.c:773 +#: lib/install.c:775 #, fuzzy msgid "running preinstall script (if any)\n" msgstr "spou¹tí se pøípadný poinstalaèní skript\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 #, fuzzy msgid "running postinstall scripts (if any)\n" msgstr "spou¹tí se pøípadný poinstalaèní skript\n" @@ -2714,169 +2709,160 @@ msgstr "bal msgid "can't query %s: %s\n" msgstr "chyba: nelze otevøít %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "probíhá dotaz na záznam èíslo %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "chyba: nelze naèíst databázový záznam\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "nelze otevøít %s: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "na zdrojové balíèky starého formátu se nelze dotazovat\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "dotaz na %s se nezdaøil\n" -#: lib/query.c:558 +#: lib/query.c:535 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "dotaz na %s se nezdaøil\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "nalezeno %d balíèkù\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾ádné balíèky\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "¾ádný balíèek nevy¾aduje %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "¾ádný balíèek neposkytuje %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "soubor %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "¾ádný balíèek nevlastní soubor %s\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "probíhá dotaz na záznam èíslo %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "záznam %d nelze naèíst\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "balíèek %s není nainstalován\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "chyba pøi hledání balíèku %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 #, fuzzy msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "%s: Chybné otevøení\n" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "dotazy na balíèek vlastnící " -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "balíèek nemá skupinu\n" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "dotazovat v¹echny balíèky" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "dotaz na %s se nezdaøil\n" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "dotazy na balíèky aktivované " -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr "dotazovat balíèky vy¾adující schopnost " -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr "dotazovat balíèky poskytující schopnost " -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "uvést pouze konfiguraèní soubory (implikuje -l)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "nainstalovat dokumentaci" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "zobrazit informace o balíèku" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "binární balíèek starého typu\n" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "balíèek %s neobsahuje soubory" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "zobrazit seznam souborù balíèkù" @@ -2966,27 +2952,12 @@ msgstr "" msgid "OK" msgstr "OK" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "chyba pøi získávání záznamu %s z %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "chyba pøi ukládání záznamu %s do %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "chyba pøi odstraòování záznamu %s do %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2994,146 +2965,156 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "chyba: nelze otevøít %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "chyba pøi získávání záznamu %s z %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "chyba pøi ukládání záznamu %s do %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "chyba pøi odstraòování záznamu %s do %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "chyba: nelze otevøít %s%s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "nelze èíst hlavièku u %d pro vyhledání" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "balíèek %s nenalezen v %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "balíèek %s nenalezen v %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "nelze èíst hlavièku u %d pro vyhledání" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstraòuje se polo¾ka databáze\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje se rejstøík skupin\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "odstraòuje se rejstøík názvù\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "nelze alokovat prostor pro databázi" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "Probíhá získávání %s jako %s\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "nelze èíst hlavièku u %d pro vyhledání" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "databáze se pøestavuje v koøenovém adresáøi %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "doèasná databáze %s ji¾ existuje" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "vytváøí se adresáø: %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "chyba pøi vytváøení adresáøe %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "otevírá se stará databáze\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "otevírá se nová databáze\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "záznam èíslo %d v databázi je chybný -- vynechává se" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "nelze pøidat záznam - pùvodnì u %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "databázi nelze pøestavit; pùvodní databáze zùstává na svém místì\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "nelze odstranit %s: %s\n" @@ -3183,7 +3164,7 @@ msgstr "z msgid "cannot open file %s: %s\n" msgstr "nelze otevøít soubor %s: " -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "chyba: %s nelze nainstalovat\n" @@ -3216,26 +3197,21 @@ msgstr "chybn msgid "installing binary packages\n" msgstr "probíhá instalace binárních balíèkù\n" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "chyba pøi hledání balíèku %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" specifikuje více balíèkù\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "chyba: nelze otevøít %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Probíhá instalace %s\n" @@ -3570,40 +3546,35 @@ msgstr "Prob msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "%s nelze odstranit - adresáø není prázdný" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "neúspìch rmdir %s: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "%s nelze odstranit: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "nelze èíst hlavièku u %d pro deinstalaci" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "odstraní se soubory test = %d\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "spou¹tí se pøípadný poinstalaèní skript\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "odstraòuje se polo¾ka databáze\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "skript nelze spustit" @@ -3671,6 +3642,25 @@ msgstr "Nevy msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "%s: Chybné otevøení\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "nelze èíst hlavièku u %d pro kontrolu závislostí" + +#~ msgid "error: could not read database record\n" +#~ msgstr "chyba: nelze naèíst databázový záznam\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "chyba pøi hledání balíèku %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "nelze èíst hlavièku u %d pro vyhledání" + +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "chyba pøi hledání balíèku %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "nelze èíst hlavièku u %d pro deinstalaci" + #, fuzzy #~ msgid "record number %u\n" #~ msgstr "probíhá ovìøování záznamu èíslo %d\n" diff --git a/po/de.po b/po/de.po index b63fbd4..6423e50 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 2.5.2\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -45,7 +45,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" @@ -2210,110 +2210,105 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "kann Kopfzeilen bei %d nicht lesen, um Abhängigkeiten zu prüfen" - # , c-format -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" # , c-format -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "kann %s lock für die Datenbank nicht bekommen" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "exklusiv" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "geteilt" @@ -2352,12 +2347,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2483,111 +2478,111 @@ msgid "(unknown type)" msgstr "(unbekannter Typ)" # , c-format -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, fuzzy, c-format msgid " file: %s action: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 #, fuzzy msgid "installing a source package\n" msgstr "Paket installieren" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "kann Datei %s nicht öffnen: " -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "kann Datei %s nicht öffnen: " -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "kann Datei %s nicht öffnen: " # , c-format -#: lib/install.c:476 +#: lib/install.c:480 #, fuzzy, c-format msgid "spec file in: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "umbennen von %s nach %s fehlgeschlagen: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2828,171 +2823,162 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "ungültige Paket-Nummer: %s\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "Fehler: konnte Datenbank-Eintrag nicht lesen\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s scheint kein RPM-Paket zu sein\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:558 +#: lib/query.c:535 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "Anfrage an alle Pakete" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "kein Paket verlangt %s\n" # oder besser: ... listet %s auf? -ke- -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "kein Paket stellt %s bereit\n" # , c-format -#: lib/query.c:638 +#: lib/query.c:615 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "ungültige Paket-Nummer: %s\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "Eintrag %d konnte nicht gelesen werden\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "Fehler beim Suchen nach Paket %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 #, fuzzy msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "%s: Öffnen fehlgeschlagen\n" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "Paket hat keinen Namen" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "Anfrage an alle Pakete" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr "Anfrage nach Paketen, die die Fähigkeit benötigen" -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr "Anfrage nach Paketen, die die Fähigkeit bereitstellen" -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "Dokumentation installieren" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "Paketinformationen anzeigen" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "Paket installieren" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "Dateiliste des Pakets anzeigen" @@ -3082,180 +3068,175 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 +#: lib/rpmdb.c:207 +msgid "" +"\n" +"--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" +" db1 to db3 on-disk format.\n" +"\n" +msgstr "" + +#: lib/rpmdb.c:222 #, fuzzy, c-format -msgid "error getting record %s from %s index" +msgid "dbiOpen: cannot open %s index" +msgstr "Fehler: kann %s nicht öffnen\n" + +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" msgstr "Fehler beim Eintrag %s von %s" -#: lib/rpmdb.c:156 +#: lib/rpmdb.c:393 #, c-format msgid "error storing record %s into %s" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" # FIXME -#: lib/rpmdb.c:161 +#: lib/rpmdb.c:402 #, fuzzy, c-format msgid "error removing record %s from %s" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:345 -msgid "" -"\n" -"--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" -" db1 to db3 on-disk format.\n" -"\n" -msgstr "" - -#: lib/rpmdb.c:360 -#, fuzzy, c-format -msgid "dbiOpen: cannot open %s index" -msgstr "Fehler: kann %s nicht öffnen\n" - -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "Paket %s in %s nicht gefunden" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "Paket %s in %s nicht gefunden" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" # FIXME -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" # reservieren??? -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "kann keinen Platz für die Datenbank bekommen" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "die temporäre Datenbank %s existiert schon" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, fuzzy, c-format msgid "creating directory: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" # , c-format -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -3308,7 +3289,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "Fehler: %s kann nicht installiert werden\n" @@ -3342,27 +3323,22 @@ msgstr "fehlgeschlagene Paket-Abh msgid "installing binary packages\n" msgstr "Paket installieren" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "Fehler beim Suchen nach Paket %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" bezeichnet mehrere Pakete\n" # oder besser: "... verletzen" ? -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Installiere %s\n" @@ -3705,40 +3681,35 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "öffnen von %s fehlgeschlagen: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "Ausführung des Skripts fehlgeschlagen" @@ -3807,6 +3778,25 @@ msgstr "Nicht erf msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "%s: Öffnen fehlgeschlagen\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "kann Kopfzeilen bei %d nicht lesen, um Abhängigkeiten zu prüfen" + +#~ msgid "error: could not read database record\n" +#~ msgstr "Fehler: konnte Datenbank-Eintrag nicht lesen\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "Fehler beim Suchen nach Paket %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" + +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "Fehler beim Suchen nach Paket %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen" + #, fuzzy #~ msgid "cannot open file %s: %s" #~ msgstr "kann Datei %s nicht öffnen: " diff --git a/po/fi.po b/po/fi.po index 214ddf3..c846787 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -20,7 +20,7 @@ msgstr "" "/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c " "/home/ewt/redhat/rpm/lib/rpmrc.c\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" @@ -2147,108 +2147,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "paketti %s ei ole %s:ssä" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "silmukka edellytysten ketjussa: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "en voi lukea headeria %d:ssä riippuvuutta tarkistaessa" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "en voinut avata %s: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "en voi saada %s lukitusta tietokantaan" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "poissulkevaa" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "jaettua" @@ -2287,12 +2282,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2414,109 +2409,109 @@ msgstr "odotin '}'-merkki msgid "(unknown type)" msgstr "(tuntematon tyyppi)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, fuzzy, c-format msgid " file: %s action: %s\n" msgstr "en voinut avata %s: %s" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 #, fuzzy msgid "installing a source package\n" msgstr "asenna paketti" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "en voinut avata tiedostoa %s: " -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "en voinut avata tiedostoa %s: " -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "en voinut avata tiedostoa %s: " -#: lib/install.c:476 +#: lib/install.c:480 #, fuzzy, c-format msgid "spec file in: %s\n" msgstr "en voinut avata %s: %s" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2752,169 +2747,160 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "virheellinen paketin numero: %s\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "virhe: tietokannan tietuetta ei voinut lukea\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ei vaikuta RPM-paketilta\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:558 +#: lib/query.c:535 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "kysele kaikki paketit" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "mikään pakettie ei tarvitse %s:a\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "mikään paketti ei tarjoa %s:a\n" -#: lib/query.c:638 +#: lib/query.c:615 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "virheellinen paketin numero: %s\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "tietuetta %d ei voitu lukea\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "virhe etsittäessä pakettia %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 #, fuzzy msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "%s: avaus ei onnistunut\n" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "paketilla ei ole nimeä" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "kysele kaikki paketit" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr "kysele paketteja, jotka vaativat ominaisuutta" -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr "kysele paketteja, jotka tarjoavat ominaisuuden" -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "listaa vain konfigurointiedostot (josta seuraa -l)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "asenna dokumentaatio" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "näytä paketin tiedot" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "asenna paketti" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "näytä paketin tiedostolistaus" @@ -3004,27 +2990,12 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "virhe luettaessa tietuetta %s %s:stä" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "virhe talletettaessa tietuetta %s %s:ään" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "virhe poistettaessa tietuetta %s %s:stä" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -3032,146 +3003,156 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "virhe: en voi avata %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "virhe luettaessa tietuetta %s %s:stä" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "virhe talletettaessa tietuetta %s %s:ään" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "virhe poistettaessa tietuetta %s %s:stä" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "en voi lukea headeria %d:stä päivittäessä" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "paketti %s ei ole %s:ssä" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "paketti %s ei ole %s:ssä" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "en voi lukea headeria %d:stä päivittäessä" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "en voi varata tilaa tietokannalle" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, fuzzy, c-format msgid "creating directory: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "en voi lisätä tietuetta %d:stä" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" @@ -3223,7 +3204,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "virhe: %s ei voida asentaa\n" @@ -3257,26 +3238,21 @@ msgstr "puuttuvat riippuvuudet:\n" msgid "installing binary packages\n" msgstr "asenna paketti" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "virhe etsittäessä pakettia %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" määrittää useita paketteja\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Asennan: %s\n" @@ -3615,40 +3591,35 @@ msgstr "virhe luotaessa hakemistoa %s: %s" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "en voi poistaa %s -hakemisto ei ole tyhjä" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "%s:n poisto epäonnistui: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "en voi lukea headeria %d:stä poistamiseen" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "skriptin ajo epäonnistui" @@ -3716,6 +3687,22 @@ msgstr "%s-%s-%s:n tyydytt msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "%s: avaus ei onnistunut\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "en voi lukea headeria %d:ssä riippuvuutta tarkistaessa" + +#~ msgid "error: could not read database record\n" +#~ msgstr "virhe: tietokannan tietuetta ei voinut lukea\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "virhe etsittäessä pakettia %s\n" + +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "virhe etsittäessä pakettia %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "en voi lukea headeria %d:stä poistamiseen" + #, fuzzy #~ msgid "cannot open file %s: %s" #~ msgstr "en voinut avata tiedostoa %s: " diff --git a/po/fr.po b/po/fr.po index 0e53a72..f62da29 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,7 +1,7 @@ msgid "" -msgstr "POT-Creation-Date: 2000-04-25 15:13-0400\n" +msgstr "POT-Creation-Date: 2000-04-26 21:07-0400\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -2148,108 +2148,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, c-format msgid "%s: %s satisfied by added package.\n" msgstr "" -#: lib/depends.c:849 +#: lib/depends.c:838 #, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "aucun package n'a été spécifié pour l'installation" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/db0.c:591 +#: lib/db0.c:420 #, fuzzy, c-format msgid "cannot get %s lock on database" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "" @@ -2288,12 +2283,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2415,109 +2410,109 @@ msgstr "" msgid "(unknown type)" msgstr "" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr "" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr "" " -f + - interroge le package à qui appartient " -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2752,173 +2747,164 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, c-format -msgid "package record number: %u\n" -msgstr "" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "La construction a échoué.\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:601 +#: lib/query.c:578 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:646 +#, c-format +msgid "package record number: %u\n" +msgstr "" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "" " -f + - interroge le package à qui appartient " -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "" " -f + - interroge le package à qui appartient " -#: lib/query.c:779 +#: lib/query.c:750 msgid "query a spec file" msgstr "" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "" " -f + - interroge le package à qui appartient " -#: lib/query.c:783 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "" -#: lib/query.c:785 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "" -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "" " -c - donne uniquement la liste des fichiers de " "configuration (implique -l)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "" " -d - donne uniquement la liste des fichiers de " "documentation (implique -l)" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "" " -i - affiche les informations relatives à un package" -#: lib/query.c:830 +#: lib/query.c:801 msgid "list files in package" msgstr "" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "" " -f + - interroge le package à qui appartient " -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr " -l - affiche la liste des packages" @@ -3007,27 +2993,12 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, c-format -msgid "error getting record %s from %s index" -msgstr "" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "impossible d'ouvrir: %s\n" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -3035,145 +3006,155 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "impossible d'ouvrir: %s\n" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "impossible d'ouvrir: %s\n" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "aucun package n'a été spécifié pour la désinstallation" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/rpmdb.c:1110 -#, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, c-format msgid "removing %d entries in %s index:\n" msgstr "" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 msgid "cannot allocate new instance in database" msgstr "" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, c-format msgid "opening old database with dbi_major %d\n" msgstr "" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, c-format msgid "opening new database with dbi_major %d\n" msgstr "" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -3224,7 +3205,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "aucun package n'a été spécifié pour l'installation" @@ -3257,26 +3238,21 @@ msgstr "" msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:440 -#, c-format -msgid "searching for package %s\n" -msgstr "" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "" @@ -3601,40 +3577,35 @@ msgstr "impossible d'ouvrir: %s\n" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "" -#: lib/uninstall.c:89 -#, fuzzy, c-format -msgid "cannot read header at %d for uninstall" -msgstr "aucun package n'a été spécifié pour la désinstallation" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "" diff --git a/po/ja.po b/po/ja.po index 9958787..8cfa804 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm-3.0.4\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: EUC-JP\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" @@ -193,7 +193,7 @@ msgstr "copyright # build root [BuildRoot] # net share [¥Í¥Ã¥È¶¦Í­] # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë] -# $Id: ja.po,v 1.47 2000/04/25 19:57:27 jbj Exp $ +# $Id: ja.po,v 1.48 2000/04/27 01:11:49 jbj Exp $ #: rpm.c:200 #, c-format msgid "rpm: %s\n" @@ -2117,108 +2117,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "%s: %s ¤Ï¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "%s: %s ¤Ï db ¥Õ¥¡¥¤¥ë¤¬¥ê¥¹¥È¤òºî¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "%s: %s ¤Ï db ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "%s: %s ¤Ï rpmlib ¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "%s: %s ¤ÏËþ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤¹: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "prerequisite ¥Á¥§¡¼¥ó¤Î¥ë¡¼¥×: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "°Í¸À­¥Á¥§¥Ã¥¯¤Î¤¿¤á¤Ë %d ¤Ç¥Ø¥Ã¥À¤òÆɤá¤Þ¤»¤ó" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "½ü³°" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "¶¦Í­" @@ -2257,12 +2252,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2387,22 +2382,22 @@ msgstr " msgid "(unknown type)" msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, fuzzy, c-format msgid " file: %s action: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: ¥¢¥¯¥·¥ç¥ó: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/install.c:202 +#: lib/install.c:201 #, fuzzy msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" @@ -2411,87 +2406,87 @@ msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s" -#: lib/install.c:372 +#: lib/install.c:376 #, fuzzy msgid " on file " msgstr "¥Õ¥¡¥¤¥ë¾å" -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s" -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "¥½¡¼¥¹¤Ï: %s\n" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "spec ¥Õ¥¡¥¤¥ë¤Ï: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿" -#: lib/install.c:710 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹" -#: lib/install.c:908 +#: lib/install.c:910 #, fuzzy msgid "running postinstall scripts (if any)\n" msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" @@ -2734,171 +2729,162 @@ msgstr " msgid "can't query %s: %s\n" msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "¥¨¥é¡¼: ¥Ç¡¼¥¿¥Ù¡¼¥¹¥ì¥³¡¼¥É¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, c-format msgid "open of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/query.c:558 +#: lib/query.c:535 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" - -#: lib/query.c:712 +#: lib/query.c:683 #, fuzzy msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "rpmQuery: rpmdbOpen() ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "¥Õ¥¡¥¤¥ë¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "¥°¥ë¡¼¥×Ãæ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹\n" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr "" "µ¡Ç½¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤Æ\n" "Ì䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr "µ¡Ç½¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "Á´¤Æ¤Î¥É¥­¥å¥á¥ó¥È¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "´ðËÜŪ¤Ê¥Õ¥¡¥¤¥ë¾ðÊó¤ò¥À¥ó¥×¤·¤Þ¤¹" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹\n" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "°Ê²¼¤ÎÌ䤤¹ç¤ï¤»¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤­´¹¤¨¤Þ¤¹" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "Îóµó¤·¤¿¥Õ¥¡¥¤¥ë¤Î¾õÂÖ¤òɽ¼¨¤·¤Þ¤¹" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹" @@ -2988,27 +2974,12 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -3016,147 +2987,157 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï %s Ãæ¤Ë¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹ÍѤζõ¤­ÍÆÎ̤¬Â­¤ê¤Þ¤»¤ó" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ÎºîÀ®¥¨¥é¡¼: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" @@ -3206,7 +3187,7 @@ msgstr "%d msgid "cannot open file %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n" @@ -3239,26 +3220,21 @@ msgstr " msgid "installing binary packages\n" msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷Ãæ\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n" @@ -3598,40 +3574,35 @@ msgstr " msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "%s ¤Îºï½ü¤Ë¼ºÇÔ: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Ë %d ¤Ç¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "¥Õ¥¡¥¤¥ë test = %d ¤òºï½ü¤·¤Þ¤¹\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" @@ -3703,6 +3674,25 @@ msgstr "%s-%s-%s msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "rpmVerify: rpmdbOen() ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "°Í¸À­¥Á¥§¥Ã¥¯¤Î¤¿¤á¤Ë %d ¤Ç¥Ø¥Ã¥À¤òÆɤá¤Þ¤»¤ó" + +#~ msgid "error: could not read database record\n" +#~ msgstr "¥¨¥é¡¼: ¥Ç¡¼¥¿¥Ù¡¼¥¹¥ì¥³¡¼¥É¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" + +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷Ãæ\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Ë %d ¤Ç¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" + #, fuzzy #~ msgid "record number %u\n" #~ msgstr "¥ì¥³¡¼¥ÉÈÖ¹æ %u\n" diff --git a/po/pl.po b/po/pl.po index 58785c8..902e362 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm-3.0.2\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "nie mo¿na otworzyæ %s/packages.rpm\n" @@ -2068,108 +2068,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakiet %s jest w konflikcie: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "nie mo¿na odczytaæ nag³ówka %d dla sprawdzenia zale¿no¶ci" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "b³êdny status pliku: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, c-format msgid "opening database mode 0x%x in %s\n" msgstr "otwiernie bazê danych w trybie 0x%x w %s\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "" @@ -2208,12 +2203,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2333,107 +2328,107 @@ msgstr "spodziewany | na ko msgid "(unknown type)" msgstr "(nieznany typ)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr " plik: %s akcja: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "grupa %s nie istnieje - u¿yto grupy root" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "warto¶æ %%instchangelog w pliku makra powinna byæ liczb±, a nie jest" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr " na pliku " -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "instacja pakietu ¼ród³owego\n" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "nie mo¿na utworzyæ %s" -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "nie mo¿na zapisaæ do %s" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "¼ród³a w: %s\n" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "nie mo¿na utworzyæ %s" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "plik spec w: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "pakiet ¼ród³owy nie zawiera pliku .spec" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "zmiana nazwy %s na %s\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "spodziewany pakiet ¼ród³owy a nie binarny" -#: lib/install.c:710 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "pakiet: %s-%s-%s test plików = %d\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "przebieg testowy - instalacja zatrzymana\n" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "ostrze¿enie: %s utworzony jako %s" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "ostrze¿enie: %s zapisany jako %s" -#: lib/install.c:908 +#: lib/install.c:910 #, fuzzy msgid "running postinstall scripts (if any)\n" msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n" @@ -2670,157 +2665,148 @@ msgstr "pakiet nie ma ani w msgid "can't query %s: %s\n" msgstr "nie mo¿na odwi±zaæ %s: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "numer rekordu pakietu: %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "b³±d: nie mo¿na odczytaæ rekordu bazy\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, c-format msgid "open of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s nie wygl±da na pakiet RPM\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "odpytywanie %s nie powiod³o siê\n" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "znaleziono %d pakietów\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s nie zawiera ¿adnych pakietów\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "¿aden pakiet nie wymaga %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "¿aden pakiet nie udostêpnia %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "plik %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "b³êdny numer pakietu: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "numer rekordu pakietu: %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "nie mo¿na odczytaæ rekordu %d\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "b³±d szukania pakietu %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "rpmQuery: rpmdbOpen() nie powiod³o siê\n" -#: lib/query.c:771 +#: lib/query.c:742 msgid "query package owning file" msgstr "sprawdzanie do jakiego pakietu nale¿y plik" -#: lib/query.c:773 +#: lib/query.c:744 msgid "query packages in group" msgstr "odpytywanie pakietów w grupie" -#: lib/query.c:775 +#: lib/query.c:746 msgid "query a package file" msgstr "odpytywanie pakietu" -#: lib/query.c:779 +#: lib/query.c:750 msgid "query a spec file" msgstr "odpytywanie pliku spec" -#: lib/query.c:781 +#: lib/query.c:752 msgid "query the pacakges triggered by the package" msgstr "odpytywanie pakietów zahaczanych przez pakiet" -#: lib/query.c:783 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "odpytywanie pakietów wymagaj±cych zasobu" -#: lib/query.c:785 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "odpytywanie pakietów udostêpniaj±cych zasób" -#: lib/query.c:824 +#: lib/query.c:795 msgid "list all configuration files" msgstr "wy¶wietl wszystkie pliki konfiguracyjne" -#: lib/query.c:826 +#: lib/query.c:797 msgid "list all documentation files" msgstr "wy¶wietl wszystkie pliki dokumentacji" -#: lib/query.c:828 +#: lib/query.c:799 msgid "dump basic file information" msgstr "podaj postawowe informacje o pliku" -#: lib/query.c:830 +#: lib/query.c:801 msgid "list files in package" msgstr "wy¶wietl pliki zawarte w pakiecie" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "u¿yj nastêpuj±cego formatu zapytania" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "pakiet ¼ród³owy nie zawiera pliku .spec" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "wy¶wietl status pokazywanych plików" -#: lib/query.c:840 +#: lib/query.c:811 msgid "display a verbose file listing" msgstr "wy¶wietl wiêcej informacji o plikach z listy" @@ -2908,27 +2894,12 @@ msgstr ")" msgid "OK" msgstr "OK" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "b³±d pobierania rekordu %s z %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "b³±d zapisywania rekordu %s do %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "b³±d usuwania rekordu %s z %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2936,16 +2907,31 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "nie mo¿na otworzyæ %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "b³±d pobierania rekordu %s z %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "b³±d zapisywania rekordu %s do %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "b³±d usuwania rekordu %s z %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -2954,130 +2940,125 @@ msgstr "" "nowym formacie" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "nie mo¿na otworzyæ %s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "pakiet %s nie znaleziony w %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "pakiet %s nie znaleziony w %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "usuwanie wpisu w bazie\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "usuwanie indeksu nazw\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "nie mo¿na alokowaæ przestrzeni dla bazy danych" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "b³±d przy tworzeniu katalogu %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "otwieranie starej bazy danych\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "otwieranie nowej bazy danych\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "naprawcze zastêpowanie plików w %s plikami z %s" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n" @@ -3127,7 +3108,7 @@ msgstr " msgid "cannot open file %s: %s\n" msgstr "nie mo¿na otworzyæ pliku %s: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie mo¿e byæ zainstalowany\n" @@ -3160,26 +3141,21 @@ msgstr "niespe msgid "installing binary packages\n" msgstr "instalacja pakietów binarnych\n" -#: lib/rpminstall.c:440 -#, c-format -msgid "searching for package %s\n" -msgstr "poszukiwanie pakietu %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" okre¶la wiele pakietów\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "nie mo¿na otworzyæ %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Instalacja %s\n" @@ -3500,40 +3476,35 @@ msgstr "przesuwanie %s do %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "skasowanie katalogu %s nie powiod³o siê" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "skasowanie %s nie powiod³o siê: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla deinstalacji" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "usunie pliki test = %d\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "usuwanie wpisu w bazie\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "wykonanie skryptu nie powiod³o siê" @@ -3602,6 +3573,24 @@ msgstr "Niespe msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "rpmVerify: rpmdbOpen() nie powiod³o siê\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "nie mo¿na odczytaæ nag³ówka %d dla sprawdzenia zale¿no¶ci" + +#~ msgid "error: could not read database record\n" +#~ msgstr "b³±d: nie mo¿na odczytaæ rekordu bazy\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "b³±d szukania pakietu %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" + +#~ msgid "searching for package %s\n" +#~ msgstr "poszukiwanie pakietu %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla deinstalacji" + #~ msgid "record number %u\n" #~ msgstr "rekord numer %u\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 8908f57..c4e53df 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,9 +2,9 @@ # Revised by Arnaldo Carvalho de Melo , 1998. # msgid "" -msgstr "POT-Creation-Date: 2000-04-25 15:13-0400\n" +msgstr "POT-Creation-Date: 2000-04-26 21:07-0400\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -2209,110 +2209,105 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, c-format msgid "%s: %s satisfied by added package.\n" msgstr "" -#: lib/depends.c:849 +#: lib/depends.c:838 #, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "não foi passado pacote para instalação" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "não foi passado pacote para desinstalação" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "" - # , c-format -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "Não consegui abrir: %s\n" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" # , c-format -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/db0.c:591 +#: lib/db0.c:420 #, fuzzy, c-format msgid "cannot get %s lock on database" msgstr "não foi passado pacote para desinstalação" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "" @@ -2351,12 +2346,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2480,112 +2475,112 @@ msgstr "" msgid "(unknown type)" msgstr "" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr "" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 #, fuzzy msgid "installing a source package\n" msgstr "instale pacote" # , c-format -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "Não consegui abrir: %s\n" # , c-format -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "Não consegui abrir: %s\n" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" # , c-format -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "Não consegui abrir: %s\n" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr "pesquise o pacote ao qual pertence" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "não foi passado pacote para instalação" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2823,168 +2818,159 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, c-format -msgid "package record number: %u\n" -msgstr "" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "Construção falhou.\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "pesquise todos os pacotes" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:601 +#: lib/query.c:578 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "não foram passados pacotes para assinatura" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:673 +#: lib/query.c:646 +#, c-format +msgid "package record number: %u\n" +msgstr "" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "não foi passado pacote para instalação" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "pesquise o pacote ao qual pertence" -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "não foi passado pacote para desinstalação" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "pesquise todos os pacotes" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "pesquise todos os pacotes" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "pesquise o pacote ao qual pertence" -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr "pesquise pacotes que requerem capacidade " -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr "pesquise pacotes que fornecem a capacidade " -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "liste somente os arquivos de configuração (implica -l)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "instale documentação" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "mostre informação do pacote" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "instale pacote" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "pesquise o pacote ao qual pertence" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "mostre a lista de arquivos do pacote" @@ -3077,46 +3063,47 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, c-format -msgid "error getting record %s from %s index" +#: lib/rpmdb.c:207 +msgid "" +"\n" +"--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" +" db1 to db3 on-disk format.\n" +"\n" msgstr "" -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "" +# , c-format +#: lib/rpmdb.c:222 +#, fuzzy, c-format +msgid "dbiOpen: cannot open %s index" +msgstr "Não consegui abrir: %s\n" # , c-format -#: lib/rpmdb.c:161 +#: lib/rpmdb.c:276 #, fuzzy, c-format -msgid "error removing record %s from %s" +msgid "error getting \"%s\" records from %s index" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:345 -msgid "" -"\n" -"--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" -" db1 to db3 on-disk format.\n" -"\n" +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" msgstr "" # , c-format -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:402 #, fuzzy, c-format -msgid "dbiOpen: cannot open %s index" +msgid "error removing record %s from %s" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -3124,130 +3111,125 @@ msgstr "" # , c-format #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "não foi passado pacote para desinstalação" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "não foi passado pacote para desinstalação" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "não foi passado pacote para desinstalação" -#: lib/rpmdb.c:1110 -#, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, c-format msgid "removing %d entries in %s index:\n" msgstr "" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 msgid "cannot allocate new instance in database" msgstr "" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" # , c-format -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Não consegui abrir: %s\n" @@ -3307,7 +3289,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "não foi passado pacote para instalação" @@ -3342,28 +3324,23 @@ msgstr "lista depend msgid "installing binary packages\n" msgstr "instale pacote" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "instale pacote" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 #, fuzzy msgid "removing these packages would break dependencies:\n" msgstr "lista dependências do pacote" # , c-format -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "" @@ -3710,40 +3687,35 @@ msgstr "N msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "" -#: lib/uninstall.c:89 -#, fuzzy, c-format -msgid "cannot read header at %d for uninstall" -msgstr "não foi passado pacote para desinstalação" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "" @@ -3810,6 +3782,10 @@ msgstr "" msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "" +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "instale pacote" + # , c-format #, fuzzy #~ msgid "cannot open file %s: %s" diff --git a/po/rpm.pot b/po/rpm.pot index 04902e6..595770d 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-04-26 20:08-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -1999,74 +1999,74 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, c-format msgid "%s: %s satisfied by added package.\n" msgstr "" -#: lib/depends.c:849 +#: lib/depends.c:838 #, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "" @@ -2259,107 +2259,107 @@ msgstr "" msgid "(unknown type)" msgstr "" -#: lib/install.c:146 lib/uninstall.c:186 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr "" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:376 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:377 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:421 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "" -#: lib/install.c:441 +#: lib/install.c:440 #, c-format msgid "cannot create sourcedir %s" msgstr "" -#: lib/install.c:447 lib/install.c:477 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "" -#: lib/install.c:451 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:471 +#: lib/install.c:470 #, c-format msgid "cannot create specdir %s" msgstr "" -#: lib/install.c:481 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "" -#: lib/install.c:515 lib/install.c:543 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "" -#: lib/install.c:565 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:567 lib/install.c:843 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "" -#: lib/install.c:658 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:715 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:778 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:803 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:839 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:913 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2592,155 +2592,146 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:447 lib/query.c:673 -#, c-format -msgid "package record number: %u\n" -msgstr "" - -#: lib/query.c:451 -msgid "error: could not read database record\n" -msgstr "" - #. XXX Fstrerror -#: lib/query.c:498 +#: lib/query.c:471 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:516 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:525 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:529 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:562 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:585 +#: lib/query.c:558 msgid "no packages\n" msgstr "" -#: lib/query.c:595 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:605 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:615 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:626 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:642 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:645 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:670 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:677 +#: lib/query.c:646 #, c-format -msgid "record %d could not be read\n" +msgid "package record number: %u\n" msgstr "" -#: lib/query.c:689 lib/query.c:700 lib/rpminstall.c:439 lib/rpminstall.c:478 +#: lib/query.c:650 #, c-format -msgid "package %s is not installed\n" +msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:692 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format -msgid "error looking for package %s\n" +msgid "package %s is not installed\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "" -#: lib/query.c:788 +#: lib/query.c:742 msgid "query package owning file" msgstr "" -#: lib/query.c:790 +#: lib/query.c:744 msgid "query packages in group" msgstr "" -#: lib/query.c:792 +#: lib/query.c:746 msgid "query a package file" msgstr "" -#: lib/query.c:796 +#: lib/query.c:750 msgid "query a spec file" msgstr "" -#: lib/query.c:798 +#: lib/query.c:752 msgid "query the pacakges triggered by the package" msgstr "" -#: lib/query.c:800 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "" -#: lib/query.c:802 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "" -#: lib/query.c:841 +#: lib/query.c:795 msgid "list all configuration files" msgstr "" -#: lib/query.c:843 +#: lib/query.c:797 msgid "list all documentation files" msgstr "" -#: lib/query.c:845 +#: lib/query.c:799 msgid "dump basic file information" msgstr "" -#: lib/query.c:847 +#: lib/query.c:801 msgid "list files in package" msgstr "" -#: lib/query.c:851 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:853 +#: lib/query.c:807 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/query.c:855 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:857 +#: lib/query.c:811 msgid "display a verbose file listing" msgstr "" @@ -2860,7 +2851,7 @@ msgstr "" msgid "error removing record %s from %s" msgstr "" -#: lib/rpmdb.c:586 lib/rpmdb.c:1938 +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "" @@ -2871,124 +2862,124 @@ msgid "" msgstr "" #. error -#: lib/rpmdb.c:863 +#: lib/rpmdb.c:857 #, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "" -#: lib/rpmdb.c:929 lib/rpmdb.c:1380 lib/uninstall.c:91 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1336 +#: lib/rpmdb.c:1330 #, c-format msgid "key \"%s\" not found in %s" msgstr "" -#: lib/rpmdb.c:1344 +#: lib/rpmdb.c:1338 #, c-format msgid "key \"%s\" not removed from %s" msgstr "" -#: lib/rpmdb.c:1414 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1421 +#: lib/rpmdb.c:1415 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1429 +#: lib/rpmdb.c:1423 #, c-format msgid "removing %d entries in %s index:\n" msgstr "" -#: lib/rpmdb.c:1433 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1580 +#: lib/rpmdb.c:1574 msgid "cannot allocate new instance in database" msgstr "" -#: lib/rpmdb.c:1629 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1642 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1649 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1653 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1963 +#: lib/rpmdb.c:1957 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:1967 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:1973 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "" -#: lib/rpmdb.c:1975 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:1982 +#: lib/rpmdb.c:1976 #, c-format msgid "opening old database with dbi_major %d\n" msgstr "" -#: lib/rpmdb.c:1991 +#: lib/rpmdb.c:1985 #, c-format msgid "opening new database with dbi_major %d\n" msgstr "" -#: lib/rpmdb.c:2013 +#: lib/rpmdb.c:2007 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2045 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2063 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2071 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2073 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2079 +#: lib/rpmdb.c:2073 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3038,7 +3029,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:543 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3071,26 +3062,21 @@ msgstr "" msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:443 -#, c-format -msgid "searching for package %s\n" -msgstr "" - -#: lib/rpminstall.c:452 lib/rpminstall.c:481 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:532 +#: lib/rpminstall.c:488 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:538 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "" @@ -3409,35 +3395,35 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "" -#: lib/uninstall.c:132 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:200 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:214 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:398 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "" diff --git a/po/ru.po b/po/ru.po index 0c1f097..67d90f6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,13 +1,13 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" "Date: 1999-05-27 17:30:00+0300\n" "From: Sergey Kubushin \n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n" @@ -2075,108 +2075,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÒÏ×ÅÒËÉ ÚÁ×ÉÓÉÍÏÓÔÅÊ" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "ÎÅ×ÅÒÎÏÅ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÁ: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, c-format msgid "opening database mode 0x%x in %s\n" msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ %s ÄÏÓÔÕÐ Ë ÂÁÚÅ ÄÁÎÎÙÈ" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "ÒÁÚÄÅÌÑÅÍÙÊ" @@ -2215,12 +2210,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2340,107 +2335,107 @@ msgstr " msgid "(unknown type)" msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "ÚÎÁÞÅÎÉÅ %%instchangelog × ÍÁËÒÏÆÁÊÌÅ ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ, Á ÏÎÏ ÎÅÔ..." #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr " ÎÁ ÆÁÊÌÅ " -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s" -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "ÎÅ ÍÏÇÕ ÐÉÓÁÔØ × %s" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "ÆÁÊÌ spec ×: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅÎ ÂÉÎÁÒÎÙÊ" -#: lib/install.c:710 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁÎ ËÁË %s" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅÎ ËÁË %s" -#: lib/install.c:908 +#: lib/install.c:910 #, fuzzy msgid "running postinstall scripts (if any)\n" msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n" @@ -2674,157 +2669,148 @@ msgstr " msgid "can't query %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "ÚÁÐÉÓØ ÐÁËÅÔÁ ÎÏÍÅÒ %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "ÏÛÉÂËÁ: ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "ÏÔËÒÙÔÉÅ %s ÎÅ ÕÄÁÌÏÓØ\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "ÚÁÐÒÏÓÙ Ë SRPM × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "ÚÁÐÒÏÓ spec-ÆÁÊÌÁ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ ÍÏÇÕ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "ÆÁÊÌ %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "ÚÁÐÉÓØ ÐÁËÅÔÁ ÎÏÍÅÒ %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "ÏÛÉÂËÁ ÐÒÉ ÐÏÉÓËÅ ÐÁËÅÔÁ %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "rpmQuery: ÎÅÕÄÁÞÁ rpmdbOpen()\n" -#: lib/query.c:771 +#: lib/query.c:742 msgid "query package owning file" msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ ÆÁÊÌ" -#: lib/query.c:773 +#: lib/query.c:744 msgid "query packages in group" msgstr "ÚÁÐÒÏÓ ÐÁËÅÔÏ× × ÇÒÕÐÐÅ" -#: lib/query.c:775 +#: lib/query.c:746 msgid "query a package file" msgstr "ÚÁÐÒÏÓÉÔØ ÆÁÊÌ ÐÁËÅÔÁ" -#: lib/query.c:779 +#: lib/query.c:750 msgid "query a spec file" msgstr "ÚÁÐÒÏÓÉÔØ spec-ÆÁÊÌ" -#: lib/query.c:781 +#: lib/query.c:752 msgid "query the pacakges triggered by the package" msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ" -#: lib/query.c:783 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ" -#: lib/query.c:785 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ" -#: lib/query.c:824 +#: lib/query.c:795 msgid "list all configuration files" msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ" -#: lib/query.c:826 +#: lib/query.c:797 msgid "list all documentation files" msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ" -#: lib/query.c:828 +#: lib/query.c:799 msgid "dump basic file information" msgstr "×Ù×ÅÓÔÉ ÂÁÚÏ×ÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ" -#: lib/query.c:830 +#: lib/query.c:801 msgid "list files in package" msgstr "ÐÏËÁÚÁÔØ ÆÁÊÌÙ ÐÁËÅÔÁ" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "ÉÓÐ. ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "ÐÏÄÓÔÁ×ÉÔØ ÓÅËÃÉÉ i18n ÉÚ ÓÌÅÄÕÀÝÅÇÏ ËÁÔÁÌÏÇÁ" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÏËÁÚÁÎÎÙÈ ÆÁÊÌÏ×" -#: lib/query.c:840 +#: lib/query.c:811 msgid "display a verbose file listing" msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ" @@ -2912,27 +2898,12 @@ msgstr ")" msgid "OK" msgstr "Ok" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2940,16 +2911,31 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -2958,130 +2944,125 @@ msgstr "" "ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅÎ × %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅÎ × %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "ÎÅ ÍÏÇÕ ×ÙÄÅÌÉÔØ ÍÅÓÔÏ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÀ ÂÁÚÕ × ËÏÒÎÅ×ÏÍ ËÁÔÁÌÏÇÅ %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ËÁÔÁÌÏÇÁ %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "ÏÔËÒÙ×ÁÀ ÓÔÁÒÕÀ ÂÁÚÕ\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n" @@ -3131,7 +3112,7 @@ msgstr " msgid "cannot open file %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, c-format msgid "%s cannot be installed\n" msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n" @@ -3164,26 +3145,21 @@ msgstr " msgid "installing binary packages\n" msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n" -#: lib/rpminstall.c:440 -#, c-format -msgid "searching for package %s\n" -msgstr "ÉÝÕ ÐÁËÅÔ %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "õÓÔÁÎÁ×ÌÉ×ÁÀ %s\n" @@ -3507,40 +3483,35 @@ msgstr " msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÕÄÁÌÅÎÉÑ" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ" @@ -3605,6 +3576,24 @@ msgstr " msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "rpmVerify: ÎÅÕÄÁÞÁ rpmdbOpen()\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÒÏ×ÅÒËÉ ÚÁ×ÉÓÉÍÏÓÔÅÊ" + +#~ msgid "error: could not read database record\n" +#~ msgstr "ÏÛÉÂËÁ: ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "ÏÛÉÂËÁ ÐÒÉ ÐÏÉÓËÅ ÐÁËÅÔÁ %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ" + +#~ msgid "searching for package %s\n" +#~ msgstr "ÉÝÕ ÐÁËÅÔ %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÕÄÁÌÅÎÉÑ" + #~ msgid "record number %u\n" #~ msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u\n" diff --git a/po/sk.po b/po/sk.po index 5eb81f0..3baa832 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 2.93\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -9,7 +9,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "nie je mo¾né otvori» %s/packages.rpm\n" @@ -2078,108 +2078,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "balík %s koliduje: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "sluèka v re»azi po¾iadaviek: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "nie je mo¾né preèíta» hlavièku na %d pre kontrolu závislostí" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "chybný stav súboru: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, c-format msgid "opening database mode 0x%x in %s\n" msgstr "otvára sa databáza s právami 0x%x v %s\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "nie je mo¾né získa» %s zámok pre databázu" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "výhradný" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "zdieµaný" @@ -2218,12 +2213,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2343,107 +2338,107 @@ msgstr "| o msgid "(unknown type)" msgstr "(neznámy typ)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr " súbor: akcia %s: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "skupina %s neexistuje - pou¾ije sa root" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "hodnota %%instchangelog v makro-súbore by mala by» èíselná, ale nie je" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "rozbalenie archívu zlyhalo%s%s: %s" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr " pre súbor " -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "in¹taluje sa zdrojový balík\n" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "zdroje v: %s\n" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "spec-súbor v: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "premenováva sa %s na %s\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "premenovanie %s na %s zlyhalo: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "oèakávaný zdrojový balík, nájdený binárny" -#: lib/install.c:710 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "balík: %s-%s-%s test súborov = %d\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "in¹talácia zastavená kvôli re¾imu --test\n" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "varovanie: %s vytvorené ako %s" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "varovanie: %s uchovaný ako %s" -#: lib/install.c:908 +#: lib/install.c:910 #, fuzzy msgid "running postinstall scripts (if any)\n" msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n" @@ -2677,158 +2672,149 @@ msgstr "bal msgid "can't query %s: %s\n" msgstr "zmazanie %s zlyhalo: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "po¾aduje sa záznam èíslo %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "chyba: nie je mo¾né preèíta» záznam v databáze\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s zrejme nie je RPM balík\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "otázka na %s zlyhala\n" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "nájdených %d balíkov\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾iadne balíky\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "¾iadny z balíkov nevy¾aduje %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "¾iadny z balíkov neposkytuje %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "súbor %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "chybné èíslo balíku: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "po¾aduje sa záznam èíslo %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "záznam %d nie je mo¾né preèíta»\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "balík %s nie je nain¹talovaný\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "chyba pri hµadaní balíka %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "rpmQuery: rpmdbOpen() zlyhalo\n" -#: lib/query.c:771 +#: lib/query.c:742 msgid "query package owning file" msgstr "opýta» sa balíku vlastniaceho súbor" -#: lib/query.c:773 +#: lib/query.c:744 msgid "query packages in group" msgstr "opýta» sa v¹etkých balíkov v skupine" -#: lib/query.c:775 +#: lib/query.c:746 msgid "query a package file" msgstr "opýta» sa súboru balíka" -#: lib/query.c:779 +#: lib/query.c:750 msgid "query a spec file" msgstr "opýta» sa spec súboru" -#: lib/query.c:781 +#: lib/query.c:752 msgid "query the pacakges triggered by the package" msgstr "opýta» sa balíkov spustených balíkom" -#: lib/query.c:783 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "opýta» sa balíkov vy¾adujúcich schopnos»" -#: lib/query.c:785 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "opýta» sa balíkov poskytujúcich schopnos»" -#: lib/query.c:824 +#: lib/query.c:795 msgid "list all configuration files" msgstr "zobrazi» v¹etky konfiguraèné súbory" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "zobrazi» v¹etky dokumentaèné súbory" -#: lib/query.c:828 +#: lib/query.c:799 msgid "dump basic file information" msgstr "zobrazi» základné informácie o balíku" -#: lib/query.c:830 +#: lib/query.c:801 msgid "list files in package" msgstr "zobrazi» súbory v balíku" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "pou¾i» nasledovný formát otázky" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "zobrazii» stav daných súborov" -#: lib/query.c:840 +#: lib/query.c:811 msgid "display a verbose file listing" msgstr "zobrazi» podrobný zoznam súborov balíka" @@ -2916,27 +2902,12 @@ msgstr ")" msgid "OK" msgstr "V PORIADKU" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "chyba pri naèítaní záznamu %s z %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "chyba pri zápise záznamu %s do %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "chyba pri odstraòovaní záznamu %s z %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2944,16 +2915,31 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "nie je mo¾né otvori» %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "chyba pri naèítaní záznamu %s z %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "chyba pri zápise záznamu %s do %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "chyba pri odstraòovaní záznamu %s z %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -2962,130 +2948,125 @@ msgstr "" "databázy v novom formáte" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "nie je mo¾né otvori» %s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "balík %s nebol nájdený v %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "balík %s nebol nájdený v %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstraòuje sa záznam z databázy\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "odstraòuje sa index názvov\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "nie je mo¾né prideli» miesto pre databázu" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "doèasná databáza %s u¾ existuje" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "chyba pri vytváraní adresára %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "otvára sa stará databáza\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "otvára sa nová databáza\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "nahradí súbory v %s súbormi z %s kvôli obnove" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstráni» adresár %s: %s\n" @@ -3135,7 +3116,7 @@ msgstr "prenieslo sa %d bal msgid "cannot open file %s: %s\n" msgstr "nie je mo¾né otvori» súbor %s: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie je mo¾né nain¹talova»\n" @@ -3168,26 +3149,21 @@ msgstr "nevyrie msgid "installing binary packages\n" msgstr "in¹talujú sa binárne balíky\n" -#: lib/rpminstall.c:440 -#, c-format -msgid "searching for package %s\n" -msgstr "vyhµadáva sa balík %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ¹pecifikuje viac balíkov\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "nie je mo¾né otvori» %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "In¹taluje sa %s\n" @@ -3508,40 +3484,35 @@ msgstr "pres msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "rmdir %s zlyhalo: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "odstránenie %s zlyhalo: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "nie je mo¾né preèíta» hlavièku na %d pre odin¹talovanie" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "budú sa odstraòova» súbory test = %d\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "odstraòuje sa záznam z databázy\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "vykonanie skriptu zlyhalo" @@ -3612,6 +3583,24 @@ msgstr "Nevyrie msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "rpmQuery: rpmdbOpen() zlyhalo\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "nie je mo¾né preèíta» hlavièku na %d pre kontrolu závislostí" + +#~ msgid "error: could not read database record\n" +#~ msgstr "chyba: nie je mo¾né preèíta» záznam v databáze\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "chyba pri hµadaní balíka %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" + +#~ msgid "searching for package %s\n" +#~ msgstr "vyhµadáva sa balík %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "nie je mo¾né preèíta» hlavièku na %d pre odin¹talovanie" + #, fuzzy #~ msgid "record number %u\n" #~ msgstr "overuje sa záznam èíslo %u\n" diff --git a/po/sl.po b/po/sl.po index 24841ce..1418f82 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.32 2000/04/25 19:57:27 jbj Exp $ +# $Id: sl.po,v 1.33 2000/04/27 01:11:49 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 2000-02-17 22:25+01:00\n" "Last-Translator: Primo¾ Peterlin \n" "Language-Team: Slovenian \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "datoteke %s/packages.rpm ni mo¾no odpreti\n" @@ -2061,108 +2061,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "%s: %s zadovoljen ob dodatnem seznamu datotek.\n" -#: lib/depends.c:846 +#: lib/depends.c:835 #, c-format msgid "%s: %s satisfied by added package.\n" msgstr "%s: %s zadovoljen ob dodatnem paketu.\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "%s: %s zadovoljen ob dodatnem paketu.\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "%s: %s zadovoljen ob dodatni ponudbi.\n" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "%s: %s zadovoljen ob dodatnem paketu.\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "%s: %s zadovoljen ob seznamu datotek db.\n" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "%s: %s zadovoljen ob ponudbi db.\n" -#: lib/depends.c:973 +#: lib/depends.c:962 #, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "%s: %s zadovoljen ob paketih db.\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "%s: %s zadovoljen ob razlièici rpmlib.\n" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "%s: %s nezadovoljen.\n" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "paket %s zahteva, a ni zadovoljeno: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s v sporu: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "zanka v predpogojevani verigi: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "ni mo¾no prebrati glave pri %d za preizkus soodvisnosti" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "okvarjeno stanje datoteke: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, c-format msgid "opening database mode 0x%x in %s\n" msgstr "odpiramo datoteko z naèinom 0x%x v %s\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "datoteke ni mo¾no %s zakleniti" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "izkljuèujoèe" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "deljeno" @@ -2201,12 +2196,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2330,107 +2325,107 @@ msgstr "| pri msgid "(unknown type)" msgstr "(neznan tip)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr " datoteka: %s akcija: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "uporabnik %s ne obstaja - uporabljamo root" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "skupina %s ne obstaja - uporabljamo root" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "vrednost %%instchangelog v makrodatoteki bi morala biti ¹tevilo, pa ni" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "razpakiranje arhiva neuspe¹no%s%s: %s" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr " pri datoteki " -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "name¹èanje izvornega paketa\n" -#: lib/install.c:436 +#: lib/install.c:440 #, c-format msgid "cannot create sourcedir %s" msgstr "ni mo¾no ustvariti izvornega imenika %s" -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "ni mo¾no pisanje na %s" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "izvori v: %s\n" -#: lib/install.c:466 +#: lib/install.c:470 #, c-format msgid "cannot create specdir %s" msgstr "ni mo¾no ustvariti imenika z doloèili spec %s" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "datoteka spec v: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "izvorni paket ne vsebuje datoteke .spec" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "preimenujemo %s v %s\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "preimenovanje %s v %s neuspe¹no: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "prièakovan izvorni paket, najden binarni" -#: lib/install.c:710 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "paket: %s-%s-%s datoteke test = %d\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "ustavljamo namestitev ker teèemo kot --test\n" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "opozorilo: %s ustvarjen kot %s" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "opozorilo: %s shranjen kot %s" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n" @@ -2664,157 +2659,148 @@ msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" msgid "can't query %s: %s\n" msgstr "ni mo¾no zbrisati %s: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "¹tevilka zapisa paketa: %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "napaka: zapisa podatkove zbirke ni mo¾no prebrati\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, c-format msgid "open of %s failed: %s\n" msgstr "odpiranje %s neuspe¹no: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s najverjetneje ni paket RPM\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "poizvedba po %s neuspe¹na\n" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "poizvedba po datoteki spec %s neuspe¹na, razèlemba ni mo¾na\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "najdeno %d paketov\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s ne vsebuje nobenega paketa\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "noben paket ne potrebuje %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "noben paket ne nudi %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "datoteka %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ni del nobenega paketa\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "neveljavna ¹tevilka paketa: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "¹tevilka zapisa paketa: %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "zapisa %d ni mo¾no prebrati\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "paket %s ni name¹èen\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "napaka pri iskanju paketa %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "rpmQuery: rpmdbOpen() neuspe¹en\n" -#: lib/query.c:771 +#: lib/query.c:742 msgid "query package owning file" msgstr "poizvedba po paketu, ki vsebuje datoteko" -#: lib/query.c:773 +#: lib/query.c:744 msgid "query packages in group" msgstr "poizvedba po paketu v skupini" -#: lib/query.c:775 +#: lib/query.c:746 msgid "query a package file" msgstr "poizvedba po paketu" -#: lib/query.c:779 +#: lib/query.c:750 msgid "query a spec file" msgstr "poizvedba po datoteki spec" -#: lib/query.c:781 +#: lib/query.c:752 msgid "query the pacakges triggered by the package" msgstr "poizvedba po paketih, ki jih spro¾i paket" -#: lib/query.c:783 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "poizvedba po paketih, ki zahtevajo zmo¾nost" -#: lib/query.c:785 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "poizvedba po paketih, ki nudijo zmo¾nost" -#: lib/query.c:824 +#: lib/query.c:795 msgid "list all configuration files" msgstr "seznam vseh nastavitvenih datotek" -#: lib/query.c:826 +#: lib/query.c:797 msgid "list all documentation files" msgstr "seznam vseh dokumentacijskih datotek" -#: lib/query.c:828 +#: lib/query.c:799 msgid "dump basic file information" msgstr "iznos osnovnih podatkov o datoteki" -#: lib/query.c:830 +#: lib/query.c:801 msgid "list files in package" msgstr "seznam datotek v paketu" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "uporabi naslednjo obliko poizvedbe" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "zamenjamo razdelje I18N z naslednjim katalogom" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "izpis stanja seznama datotek" -#: lib/query.c:840 +#: lib/query.c:811 msgid "display a verbose file listing" msgstr "izpis ob¹irnega seznama datotek" @@ -2901,27 +2887,12 @@ msgstr ")" msgid "OK" msgstr "V REDU" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "napaka pri branju zapisa %s iz %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "napaka pri pisanju zapisa %s v %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "napaka pri brisanju zapisa %s iz %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2929,147 +2900,157 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "ni mo¾no odpreti %s: %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "napaka pri branju zapisa %s iz %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "napaka pri pisanju zapisa %s v %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "napaka pri brisanju zapisa %s iz %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "paketa ni mo¾no odpreti: %s\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "ni mo¾no prebrati glave pri %d za vpogled" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "paketa %s ni najti v %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "paketa %s ni najti v %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "ni mo¾no prebrati glave pri %d za vpogled" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstranjujemo vnose v podatkovni zbirki\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjujemo seznam skupin\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "odstranjujemo seznam imen\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "ni mo¾no zagotoviti prostora za podatkovno zbirko" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "preimenujemo %s v %s\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "ni mo¾no prebrati glave pri %d za vpogled" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "ustvarjamo imenik: %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "napaka pri ustvarjanju imenika %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "odpiramo staro podatkovno zbirko\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "odpiramo novo podatkovno zbirko\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo." -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "zapisa ni mo¾no dodati na %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke neuspe¹na; stara ostaja na istem mestu\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "posku¹amo povrniti z nadomestitvijo datotek v %s z datotekami iz %s" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspe¹na odstranitev imenika %s: %s\n" @@ -3119,7 +3100,7 @@ msgstr "prenesli smo %d paketov\n" msgid "cannot open file %s: %s\n" msgstr "ni mo¾no odpreti datoteke %s: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, c-format msgid "%s cannot be installed\n" msgstr "%s ni mo¾no namestiti\n" @@ -3152,26 +3133,21 @@ msgstr "neuspe msgid "installing binary packages\n" msgstr "name¹èamo binarne pakete\n" -#: lib/rpminstall.c:440 -#, c-format -msgid "searching for package %s\n" -msgstr "i¹èemo paket %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" doloèa veèterne pakete\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, c-format msgid "cannot open %s: %s\n" msgstr "ni mo¾no odpreti %s: %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Name¹èamo %s\n" @@ -3490,40 +3466,35 @@ msgstr "prestavljamo imenik %s v %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "ni mo¾no odstraniti %s - imenik ni prazen" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "odstranitev imenika %s neuspe¹na: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "odstranitev %s neuspe¹na: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "ni mo¾no prebrati glave pri %d za odstranitev" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "datoteke bomo odstranili, test = %d\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "poganjamo poodnamestitvene skripte (èe obstajajo)\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "odstranjujemo vnose v podatkovni zbirki\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "skript se ni uspe¹no izvedel" @@ -3590,6 +3561,24 @@ msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: " msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "rpmVerify: rpmdbOpen() neuspe¹en\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "ni mo¾no prebrati glave pri %d za preizkus soodvisnosti" + +#~ msgid "error: could not read database record\n" +#~ msgstr "napaka: zapisa podatkove zbirke ni mo¾no prebrati\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "napaka pri iskanju paketa %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "ni mo¾no prebrati glave pri %d za vpogled" + +#~ msgid "searching for package %s\n" +#~ msgstr "i¹èemo paket %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "ni mo¾no prebrati glave pri %d za odstranitev" + #~ msgid "record number %u\n" #~ msgstr "zapis ¹tevilka %u\n" diff --git a/po/sr.po b/po/sr.po index 24625e1..c07211e 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" "From: Erik Troan \n" @@ -18,7 +18,7 @@ msgstr "" "/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c " "/home/ewt/redhat/rpm/lib/rpmrc.c\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" @@ -2108,108 +2108,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "paket %s nije naveden u %s" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "petlja u lancu: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "ne mogu da proèitam zaglavlje na %s za proveru zavisnosti" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "neuspelo otvaranje %s: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "ekskluzivno" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "deljeno" @@ -2248,12 +2243,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2375,109 +2370,109 @@ msgstr "| o msgid "(unknown type)" msgstr "(nepoznat tip)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, fuzzy, c-format msgid " file: %s action: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 #, fuzzy msgid "installing a source package\n" msgstr "instaliraj paket" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/install.c:476 +#: lib/install.c:480 #, fuzzy, c-format msgid "spec file in: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr "upit nad paketom koji ima " -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "preimenovanje %s u %s nije uspelo: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2712,169 +2707,160 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "pogre¹an broj paketa: %s\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "gre¹ka: neuspelo èitanje sloga baze podataka\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ne lièi na RPM paket\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:558 +#: lib/query.c:535 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "upit nad svim paketima" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "nijedan paket ne zahteva %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "nijedan paket ne obezbeðuje %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "pogre¹an broj paketa: %s\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "ne mogu da proèitam slog %d\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "gre¹ka kod potrage za paketom %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 #, fuzzy msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "%s: Neuspelo otvaranje\n" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr "upit nad paketom koji ima " -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "paket nema imena" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "upit nad svim paketima" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr "upit nad paketom koji ima " -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr "upit za pakete koji zahtevaju svojstvo" -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr "upit za pakete koji omoguæavaju svojstvo" -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "instaliraj dokumentaciju" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "prika¾i informacije o paketu" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "instaliraj paket" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "upit nad paketom koji ima " -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "prika¾i listu datoteka u paketu" @@ -2964,27 +2950,12 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "gre¹ka kod uzimanja sloga %s iz %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "gre¹ka zapisivanja sloga %s u %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "gre¹ka uklanjanja sloga %s u %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2992,146 +2963,156 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "gre¹ka kod uzimanja sloga %s iz %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "gre¹ka zapisivanja sloga %s u %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "gre¹ka uklanjanja sloga %s u %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "dbpath nije odreðen" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "ne mogu da proèitam zaglavlje na %d za proveru" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "paket %s nije naðen u %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "paket %s nije naðen u %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "ne mogu da proèitam zaglavlje na %d za proveru" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "ne mogu da zauzmem prostor za bazu podataka" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "ne mogu da proèitam zaglavlje na %d za proveru" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "privremena baza podataka %s veæ postoji" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, fuzzy, c-format msgid "creating directory: %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "ne mogu da dodam slog originalno na %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" @@ -3183,7 +3164,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "gre¹ka: %s se ne mo¾e instalirati\n" @@ -3217,26 +3198,21 @@ msgstr "lo msgid "installing binary packages\n" msgstr "instaliraj paket" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "gre¹ka potrage za paketom %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" odreðuje vi¹e paketa\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Instaliram %s\n" @@ -3575,40 +3551,35 @@ msgstr "gre msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "ne mogu da uklonim %s - direktorijum nije prazan" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "neuspela komanda rmdir %s: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "uklanjanje %s nije uspelo: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "neuspelo izvr¹avanje skripta" @@ -3676,6 +3647,25 @@ msgstr "Nezadovoljene me msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "%s: Neuspelo otvaranje\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "ne mogu da proèitam zaglavlje na %s za proveru zavisnosti" + +#~ msgid "error: could not read database record\n" +#~ msgstr "gre¹ka: neuspelo èitanje sloga baze podataka\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "gre¹ka kod potrage za paketom %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "ne mogu da proèitam zaglavlje na %d za proveru" + +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "gre¹ka potrage za paketom %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju" + #, fuzzy #~ msgid "cannot open file %s: %s" #~ msgstr "Ne mogu da otvorim datoteku %s: " diff --git a/po/sv.po b/po/sv.po index 9e7130a..7f4c94e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,12 +1,12 @@ # Swedish messages for RPM # Copyright © 1999 Free Software Foundation, Inc. # Göran Uddeborg , 1999, 2000. -# $Revision: 1.92 $ +# $Revision: 1.93 $ # msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: 2000-02-21 12:20+0100\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "kan inte öppna %s/packages.rpm\n" @@ -2050,108 +2050,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "%s: %s uppfyllt av tillagd fillista.\n" -#: lib/depends.c:846 +#: lib/depends.c:835 #, c-format msgid "%s: %s satisfied by added package.\n" msgstr "%s: %s uppfyllt av tillagt paket.\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "%s: %s uppfyllt av tillagt paket.\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "%s: %s uppfyllt av tillagt tillhandahållande (provide).\n" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "%s: %s uppfyllt av tillagt paket.\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "%s: %s uppfyllt av tillhandahållanden (provides) från rpmrc.\n" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "%s: %s uppfyllt av fillistor från db.\n" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "%s: %s uppfyllt av tillhandahållanden (provides) från db.\n" -#: lib/depends.c:973 +#: lib/depends.c:962 #, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "%s: %s uppfyllt av db-paket.\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "%s: %s uppfyllt av rpmlib-version.\n" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "%s: %s ej uppfyllt.\n" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, c-format msgid "package %s require not satisfied: %s\n" msgstr "paket %s behov inte uppfyllda: %s\n" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s står i konflikt: %s\n" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "cirkularitet i kedja av förutsättningar: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "kan inte läsa huvud vid %d för beroendekontroll" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "felaktig filstatus: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, c-format msgid "opening database mode 0x%x in %s\n" msgstr "öppnar databas med rättighet 0x%x i %s\n" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, c-format msgid "failed to open %s: %s\n" msgstr "kunde inte öppna %s: %s\n" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "kan inte få %s lås på databas" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "uteslutande" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "delat" @@ -2190,12 +2185,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2320,107 +2315,107 @@ msgstr "| f msgid "(unknown type)" msgstr "(okänd typ)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, c-format msgid " file: %s action: %s\n" msgstr " fil: %s åtgärd: %s\n" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "användare %s finns inte - använder root" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "grupp %s finns inte - använder root" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "%%instchangelog-värde i makrofil skall vara ett tal, men är inte det" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "uppackning av arkiv misslyckades%s%s: %s" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr " vid fil " -#: lib/install.c:416 +#: lib/install.c:420 msgid "installing a source package\n" msgstr "installerar källpaket\n" -#: lib/install.c:436 +#: lib/install.c:440 #, c-format msgid "cannot create sourcedir %s" msgstr "kan inte skapa källkatalog %s" -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, c-format msgid "cannot write to %s" msgstr "kan inte skriva till %s" -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "källkod i: %s\n" -#: lib/install.c:466 +#: lib/install.c:470 #, c-format msgid "cannot create specdir %s" msgstr "kan inte skapa spec-katalog %s" -#: lib/install.c:476 +#: lib/install.c:480 #, c-format msgid "spec file in: %s\n" msgstr "spec-fil i: %s\n" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 msgid "source package contains no .spec file" msgstr "källpaket innehåller ingen spec-fil" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "byter namn på %s till %s\n" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "namnbyte från %s till %s misslyckades: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "källpaket förväntades, fann binärpaket" -#: lib/install.c:710 +#: lib/install.c:712 #, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "paket: %s-%s-%s filtest = %d\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "avbryter installation eftersom vi kör --test\n" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "kör (eventuellt) preinstalltionsskript\n" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "varning: %s skapades som %s" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "varning: %s sparades som %s" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "kör (eventuellt) postinstallationsskript\n" @@ -2656,157 +2651,148 @@ msgstr "paketet har varken fil msgid "can't query %s: %s\n" msgstr "kan inte ta bort %s: %s\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "paketpost nummer: %d\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "fel: kunde inte lästa databaspost\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, c-format msgid "open of %s failed: %s\n" msgstr "misslyckades öppna %s: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "källpaket i gammalt format går ej att fråga om\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s verkar inte vara ett RPM-paket\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "fråga om %s misslyckades\n" -#: lib/query.c:558 +#: lib/query.c:535 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "fråga om spec-fil %s misslyckades, kan inte parsa\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "hittade %d paket\n" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupp %s innehåller inga paket\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "inga paketutlösare %s\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "inget paket behöver %s\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "inget paket tillhandahåller %s\n" -#: lib/query.c:638 +#: lib/query.c:615 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "fil %s ägs inte av något paket\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "paketpost nummer: %d\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "post %d kunde inte läsas\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "fel vid sökning efter paket %s\n" - -#: lib/query.c:712 +#: lib/query.c:683 msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "rpmQuery: rpmdbOpen() misslyckades\n" -#: lib/query.c:771 +#: lib/query.c:742 msgid "query package owning file" msgstr "undersök paket som äger fil" -#: lib/query.c:773 +#: lib/query.c:744 msgid "query packages in group" msgstr "undersök paket i grupp" -#: lib/query.c:775 +#: lib/query.c:746 msgid "query a package file" msgstr "undersök en paketfil" -#: lib/query.c:779 +#: lib/query.c:750 msgid "query a spec file" msgstr "fråga om en spec-fil" -#: lib/query.c:781 +#: lib/query.c:752 msgid "query the pacakges triggered by the package" msgstr "undersök paket utlösta av paketet" -#: lib/query.c:783 +#: lib/query.c:754 msgid "query the packages which require a capability" msgstr "fråga om paket som behöver en egenskap" -#: lib/query.c:785 +#: lib/query.c:756 msgid "query the packages which provide a capability" msgstr "fråga om paket som tillhandahåller en egenskap" -#: lib/query.c:824 +#: lib/query.c:795 msgid "list all configuration files" msgstr "lista alla konfigurationsfiler" -#: lib/query.c:826 +#: lib/query.c:797 msgid "list all documentation files" msgstr "lista alla dokumentationsfiler" -#: lib/query.c:828 +#: lib/query.c:799 msgid "dump basic file information" msgstr "visa filinformation" -#: lib/query.c:830 +#: lib/query.c:801 msgid "list files in package" msgstr "lista filer i paketet" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "använd följande frågeformat" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "ersätt översatta sektioner från följande katalog" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "visa tillstånd för de listade filerna" -#: lib/query.c:840 +#: lib/query.c:811 msgid "display a verbose file listing" msgstr "visa en utförlig fillistning" @@ -2893,27 +2879,12 @@ msgstr ")" msgid "OK" msgstr "OK" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "fel när post %s hämtades från %s" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "fel när post %s sparades i %s" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "fel när post %s togs bort ur %s" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -2921,16 +2892,31 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "kan inte öppna %s: %s\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "fel när post %s hämtades från %s" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "fel när post %s sparades i %s" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "fel när post %s togs bort ur %s" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -2939,130 +2925,125 @@ msgstr "" "i nytt format" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "kan inte öppna paket: %s\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "kan inte läsa huvud vid %d för uppslagning" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "fann ej paket %s i %s" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "fann ej paket %s i %s" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "kan inte läsa huvud vid %d för uppslagning" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "tar bort databasposter\n" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort gruppindex\n" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "tar bort namnindex\n" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "kan inte allokera plats för databas" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "byter namn på %s till %s\n" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "kan inte läsa huvud vid %d för uppslagning" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "tillfällig databas %s existerar redan" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, c-format msgid "creating directory: %s\n" msgstr "skapar katalog: %s\n" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "fel när katalog skapades %s: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "öppnar gammal databas\n" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "öppnar ny databas\n" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "post nummer %d i databasen är felaktig -- hoppar över den" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "kan inte lägga till post ursprungligen vid %d" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "kunde inte bygga om databasen; orginaldatabasen finns kvar\n" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "byt ut filer i %s med filer från %s för att återställa" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" @@ -3112,7 +3093,7 @@ msgstr "h msgid "cannot open file %s: %s\n" msgstr "kan inte öppna filen %s: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, c-format msgid "%s cannot be installed\n" msgstr "%s kan inte installeras\n" @@ -3145,26 +3126,21 @@ msgstr "ouppfyllda beroenden:\n" msgid "installing binary packages\n" msgstr "installerar binärpaket\n" -#: lib/rpminstall.c:440 -#, c-format -msgid "searching for package %s\n" -msgstr "letar efter paket %s\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" anger flera paket\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, c-format msgid "cannot open %s: %s\n" msgstr "kan inte öppna %s: %s\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "Installerar %s\n" @@ -3483,40 +3459,35 @@ msgstr "flyttar katalogen %s till %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "kan inte ta bort %s - katalogen är int tom" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "rmdir av %s misslyckades: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "borttagning av %s misslyckades: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "kan inte läsa huvud vid %d för avinstallation" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "tar bort filer test = %d\n" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "kör (eventuellt) postavinstallationsskript\n" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "tar bort databasposter\n" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "skriptkörning misslyckades" @@ -3583,6 +3554,24 @@ msgstr "Ouppfyllda beroenden f msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "rpmVerify: rpmdbOpen() misslyckades\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "kan inte läsa huvud vid %d för beroendekontroll" + +#~ msgid "error: could not read database record\n" +#~ msgstr "fel: kunde inte lästa databaspost\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "fel vid sökning efter paket %s\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "kan inte läsa huvud vid %d för uppslagning" + +#~ msgid "searching for package %s\n" +#~ msgstr "letar efter paket %s\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "kan inte läsa huvud vid %d för avinstallation" + #~ msgid "record number %u\n" #~ msgstr "post nummer %u\n" diff --git a/po/tr.po b/po/tr.po index d8eefb9..243a7e6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-04-25 15:13-0400\n" +"POT-Creation-Date: 2000-04-26 21:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425 +#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "hata: %s%s/packages.rpm açýlamýyor\n" @@ -2146,108 +2146,103 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:797 +#: lib/depends.c:786 #, c-format msgid "%s: %s satisfied by added file list.\n" msgstr "" -#: lib/depends.c:846 +#: lib/depends.c:835 #, fuzzy, c-format msgid "%s: %s satisfied by added package.\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/depends.c:849 +#: lib/depends.c:838 #, fuzzy, c-format msgid "%s: %s satisfied by added package (shouldn't happen).\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/depends.c:867 +#: lib/depends.c:856 #, c-format msgid "%s: %s satisfied by added provide.\n" msgstr "" -#: lib/depends.c:896 +#: lib/depends.c:885 #, fuzzy, c-format msgid "%s: %s satisfied by Depends cache.\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/depends.c:909 +#: lib/depends.c:898 #, c-format msgid "%s: %s satisfied by rpmrc provides.\n" msgstr "" -#: lib/depends.c:937 +#: lib/depends.c:926 #, c-format msgid "%s: %s satisfied by db file lists.\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:944 #, c-format msgid "%s: %s satisfied by db provides.\n" msgstr "" -#: lib/depends.c:973 +#: lib/depends.c:962 #, fuzzy, c-format msgid "%s: %s satisfied by db packages.\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/depends.c:986 +#: lib/depends.c:975 #, c-format msgid "%s: %s satisfied by rpmlib version.\n" msgstr "" -#: lib/depends.c:996 +#: lib/depends.c:985 #, c-format msgid "%s: %s unsatisfied.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1048 +#: lib/depends.c:1037 #, fuzzy, c-format msgid "package %s require not satisfied: %s\n" msgstr "%s paketi %s altýnda gözükmüyor" #. conflicts exist. -#: lib/depends.c:1110 +#: lib/depends.c:1099 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "%s paketi %s altýnda gözükmüyor" -#: lib/depends.c:1240 +#: lib/depends.c:1229 #, c-format msgid "loop in prerequisite chain: %s" msgstr "gerekenler zincirinde döngü: %s" -#: lib/depends.c:1444 -#, c-format -msgid "cannot read header at %d for dependency check" -msgstr "baðýmlýlýk sorgulamasý için %d numaralý baþlýk okunamýyor" - -#: lib/db0.c:565 +#: lib/db0.c:394 #, fuzzy, c-format msgid "bad db file %s" msgstr "%s açýlamadý: %s" -#: lib/db0.c:574 +#: lib/db0.c:403 #, fuzzy, c-format msgid "opening database mode 0x%x in %s\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/db0.c:579 lib/url.c:445 +#: lib/db0.c:408 lib/url.c:445 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "%s açýlamadý: %s" -#: lib/db0.c:591 +#: lib/db0.c:420 #, c-format msgid "cannot get %s lock on database" msgstr "Veritabaný için %s kilit (lock) alýnamadý" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "exclusive" msgstr "özel" -#: lib/db0.c:592 +#: lib/db0.c:421 msgid "shared" msgstr "paylaþýlan (shared)" @@ -2286,12 +2281,12 @@ msgstr "" msgid "opening db environment %s/%s(%s) %s\n" msgstr "" -#: lib/db3.c:1117 +#: lib/db3.c:872 #, c-format msgid "closed db index %s/%s(%s)\n" msgstr "" -#: lib/db3.c:1195 +#: lib/db3.c:950 #, c-format msgid "opening db index %s/%s(%s) %s\n" msgstr "" @@ -2413,109 +2408,109 @@ msgstr "dizinin sonunda | bekleniyordu" msgid "(unknown type)" msgstr "(bilinmeyen tip)" -#: lib/install.c:146 lib/uninstall.c:184 +#: lib/install.c:145 lib/uninstall.c:185 #, fuzzy, c-format msgid " file: %s action: %s\n" msgstr "%s açýlamadý: %s" -#: lib/install.c:165 +#: lib/install.c:164 #, c-format msgid "user %s does not exist - using root" msgstr "" -#: lib/install.c:173 +#: lib/install.c:172 #, c-format msgid "group %s does not exist - using root" msgstr "" -#: lib/install.c:202 +#: lib/install.c:201 msgid "%%instchangelog value in macro file should be a number, but isn't" msgstr "" #. this would probably be a good place to check if disk space #. was used up - if so, we should return a different error -#: lib/install.c:371 +#: lib/install.c:375 #, c-format msgid "unpacking of archive failed%s%s: %s" msgstr "" -#: lib/install.c:372 +#: lib/install.c:376 msgid " on file " msgstr "" -#: lib/install.c:416 +#: lib/install.c:420 #, fuzzy msgid "installing a source package\n" msgstr "paket yüklemek" -#: lib/install.c:436 +#: lib/install.c:440 #, fuzzy, c-format msgid "cannot create sourcedir %s" msgstr "%s dosyasý açýlamýyor: " -#: lib/install.c:442 lib/install.c:472 +#: lib/install.c:446 lib/install.c:476 #, fuzzy, c-format msgid "cannot write to %s" msgstr "%s dosyasý açýlamýyor: " -#: lib/install.c:446 +#: lib/install.c:450 #, c-format msgid "sources in: %s\n" msgstr "" -#: lib/install.c:466 +#: lib/install.c:470 #, fuzzy, c-format msgid "cannot create specdir %s" msgstr "%s dosyasý açýlamýyor: " -#: lib/install.c:476 +#: lib/install.c:480 #, fuzzy, c-format msgid "spec file in: %s\n" msgstr "%s açýlamadý: %s" -#: lib/install.c:510 lib/install.c:538 +#: lib/install.c:514 lib/install.c:542 #, fuzzy msgid "source package contains no .spec file" msgstr " isimli dosyayý içeren paketi sorgulamak" -#: lib/install.c:560 +#: lib/install.c:564 #, c-format msgid "renaming %s to %s\n" msgstr "" -#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29 +#: lib/install.c:566 lib/install.c:840 lib/uninstall.c:28 #, c-format msgid "rename of %s to %s failed: %s" msgstr "%s 'nin isminin %s 'ye çevrilmesinde belirtilen hata oluþtu: %s" -#: lib/install.c:653 +#: lib/install.c:657 msgid "source package expected, binary found" msgstr "" -#: lib/install.c:710 +#: lib/install.c:712 #, fuzzy, c-format msgid "package: %s-%s-%s files test = %d\n" msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n" -#: lib/install.c:768 +#: lib/install.c:770 msgid "stopping install as we're running --test\n" msgstr "" -#: lib/install.c:773 +#: lib/install.c:775 msgid "running preinstall script (if any)\n" msgstr "" -#: lib/install.c:798 +#: lib/install.c:800 #, c-format msgid "warning: %s created as %s" msgstr "" -#: lib/install.c:834 +#: lib/install.c:836 #, c-format msgid "warning: %s saved as %s" msgstr "" -#: lib/install.c:908 +#: lib/install.c:910 msgid "running postinstall scripts (if any)\n" msgstr "" @@ -2751,170 +2746,161 @@ msgstr "" msgid "can't query %s: %s\n" msgstr "hata: %s eriþilemiyor\n" -#: lib/query.c:446 lib/query.c:669 -#, fuzzy, c-format -msgid "package record number: %u\n" -msgstr "geçersiz paket numarsý: %s\n" - -#: lib/query.c:450 -msgid "error: could not read database record\n" -msgstr "hata: veritabaný kaydý okunamadý\n" - #. XXX Fstrerror -#: lib/query.c:494 +#: lib/query.c:471 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n" -#: lib/query.c:512 +#: lib/query.c:489 msgid "old format source packages cannot be queried\n" msgstr "eski tip kaynak paketleri sorgulanamýyor\n" -#: lib/query.c:521 lib/rpminstall.c:231 +#: lib/query.c:498 lib/rpminstall.c:231 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s bir RPM paketi deðil (gibi)\n" -#: lib/query.c:525 +#: lib/query.c:502 #, c-format msgid "query of %s failed\n" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:558 +#: lib/query.c:535 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:581 +#: lib/query.c:558 #, fuzzy msgid "no packages\n" msgstr "Tüm paketleri sorgulama" -#: lib/query.c:591 +#: lib/query.c:568 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s grubu hiç paket içermiyor\n" -#: lib/query.c:601 +#: lib/query.c:578 #, c-format msgid "no package triggers %s\n" msgstr "hiç bir paket %s tetiklemiyor\n" -#: lib/query.c:611 +#: lib/query.c:588 #, c-format msgid "no package requires %s\n" msgstr "hiç bir paket %s gerektirmiyor\n" -#: lib/query.c:622 +#: lib/query.c:599 #, c-format msgid "no package provides %s\n" msgstr "hiç bir paket %s saðlamýyor\n" -#: lib/query.c:638 +#: lib/query.c:615 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "%s açýlamadý: %s" -#: lib/query.c:641 +#: lib/query.c:618 #, c-format msgid "file %s is not owned by any package\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/query.c:666 +#: lib/query.c:643 #, c-format msgid "invalid package number: %s\n" msgstr "geçersiz paket numarsý: %s\n" -#: lib/query.c:673 +#: lib/query.c:646 +#, fuzzy, c-format +msgid "package record number: %u\n" +msgstr "geçersiz paket numarsý: %s\n" + +#: lib/query.c:650 #, c-format msgid "record %d could not be read\n" msgstr "%d numaralý kayýt okunamadý\n" -#: lib/query.c:684 lib/rpminstall.c:436 +#: lib/query.c:661 lib/rpminstall.c:435 #, c-format msgid "package %s is not installed\n" msgstr "%s pakedi yüklenmemiþ\n" -#: lib/query.c:687 -#, c-format -msgid "error looking for package %s\n" -msgstr "%s pakedi aranýrken hata oluþtu\n" - -#: lib/query.c:712 +#: lib/query.c:683 #, fuzzy msgid "rpmQuery: rpmdbOpen() failed\n" msgstr "%s: Eriþilemedi\n" -#: lib/query.c:771 +#: lib/query.c:742 #, fuzzy msgid "query package owning file" msgstr " isimli dosyayý içeren paketi sorgulamak" -#: lib/query.c:773 +#: lib/query.c:744 #, fuzzy msgid "query packages in group" msgstr "pakedin adý yok :-)" -#: lib/query.c:775 +#: lib/query.c:746 #, fuzzy msgid "query a package file" msgstr "Tüm paketleri sorgulama" -#: lib/query.c:779 +#: lib/query.c:750 #, fuzzy msgid "query a spec file" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:781 +#: lib/query.c:752 #, fuzzy msgid "query the pacakges triggered by the package" msgstr " isimli dosyayý içeren paketi sorgulamak" -#: lib/query.c:783 +#: lib/query.c:754 #, fuzzy msgid "query the packages which require a capability" msgstr " yeteneðine ihtiyaç duyan paketleri sorgulama" -#: lib/query.c:785 +#: lib/query.c:756 #, fuzzy msgid "query the packages which provide a capability" msgstr " yeteneði olan paketleri sorgulama" -#: lib/query.c:824 +#: lib/query.c:795 #, fuzzy msgid "list all configuration files" msgstr "" "sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)" -#: lib/query.c:826 +#: lib/query.c:797 #, fuzzy msgid "list all documentation files" msgstr "paket ile gelen belgeleri de yükler" -#: lib/query.c:828 +#: lib/query.c:799 #, fuzzy msgid "dump basic file information" msgstr "Paket bilgisini gösterme" -#: lib/query.c:830 +#: lib/query.c:801 #, fuzzy msgid "list files in package" msgstr "paket yüklemek" -#: lib/query.c:834 +#: lib/query.c:805 msgid "use the following query format" msgstr "" -#: lib/query.c:836 +#: lib/query.c:807 #, fuzzy msgid "substitute i18n sections into spec file" msgstr " isimli dosyayý içeren paketi sorgulamak" -#: lib/query.c:838 +#: lib/query.c:809 msgid "display the states of the listed files" msgstr "" -#: lib/query.c:840 +#: lib/query.c:811 #, fuzzy msgid "display a verbose file listing" msgstr "Paketin içerdiði dosyalarý gösterme" @@ -3004,27 +2990,12 @@ msgstr "" msgid "OK" msgstr "" -#: lib/rpmdb.c:91 +#: lib/rpmdb.c:89 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: lib/rpmdb.c:135 -#, fuzzy, c-format -msgid "error getting record %s from %s index" -msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:" - -#: lib/rpmdb.c:156 -#, c-format -msgid "error storing record %s into %s" -msgstr "%s kaydý %s dosyasýna yazýlamýyor" - -#: lib/rpmdb.c:161 -#, fuzzy, c-format -msgid "error removing record %s from %s" -msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" - -#: lib/rpmdb.c:345 +#: lib/rpmdb.c:207 msgid "" "\n" "--> Please run \"rpm --rebuilddb\" as root to convert your database from\n" @@ -3032,147 +3003,157 @@ msgid "" "\n" msgstr "" -#: lib/rpmdb.c:360 +#: lib/rpmdb.c:222 #, fuzzy, c-format msgid "dbiOpen: cannot open %s index" msgstr "hata: %s eriþilemiyor\n" -#: lib/rpmdb.c:473 lib/rpmdb.c:1795 +#: lib/rpmdb.c:276 +#, fuzzy, c-format +msgid "error getting \"%s\" records from %s index" +msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:" + +#: lib/rpmdb.c:393 +#, c-format +msgid "error storing record %s into %s" +msgstr "%s kaydý %s dosyasýna yazýlamýyor" + +#: lib/rpmdb.c:402 +#, fuzzy, c-format +msgid "error removing record %s from %s" +msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" + +#: lib/rpmdb.c:586 lib/rpmdb.c:1932 msgid "no dbpath has been set" msgstr "dbpath deðeri girilmemiþ" -#: lib/rpmdb.c:551 +#: lib/rpmdb.c:664 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:736 +#: lib/rpmdb.c:857 #, fuzzy, c-format msgid "cannot retrieve package \"%s\" from db" msgstr "hata: %s%s/packages.rpm açýlamýyor\n" -#: lib/rpmdb.c:1076 +#: lib/rpmdb.c:923 lib/rpmdb.c:1374 lib/uninstall.c:90 +#, fuzzy, c-format +msgid "%s: cannot read header at 0x%x" +msgstr "%d kaydýndan baþlýk bilgisi okunamadý" + +#: lib/rpmdb.c:1330 #, fuzzy, c-format msgid "key \"%s\" not found in %s" msgstr "%s pakedi %s içerisinde bulunamadý" -#: lib/rpmdb.c:1084 +#: lib/rpmdb.c:1338 #, fuzzy, c-format msgid "key \"%s\" not removed from %s" msgstr "%s pakedi %s içerisinde bulunamadý" -#: lib/rpmdb.c:1110 -#, fuzzy, c-format -msgid "rpmdbRemove: cannot read header at 0x%x" -msgstr "%d kaydýndan baþlýk bilgisi okunamadý" - -#: lib/rpmdb.c:1144 +#: lib/rpmdb.c:1408 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1151 +#: lib/rpmdb.c:1415 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:1159 +#: lib/rpmdb.c:1423 #, fuzzy, c-format msgid "removing %d entries in %s index:\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:1163 +#: lib/rpmdb.c:1427 #, c-format msgid "\t%6d %s\n" msgstr "" # reservieren??? -#: lib/rpmdb.c:1310 +#: lib/rpmdb.c:1574 #, fuzzy msgid "cannot allocate new instance in database" msgstr "Veritabaný için yer bulunamadý" -#: lib/rpmdb.c:1359 +#: lib/rpmdb.c:1623 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1372 +#: lib/rpmdb.c:1636 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1379 +#: lib/rpmdb.c:1643 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:1383 +#: lib/rpmdb.c:1647 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1701 -#, c-format -msgid "cannot read header at %d for lookup" -msgstr "%d kaydýndan baþlýk bilgisi okunamadý" - -#: lib/rpmdb.c:1820 +#: lib/rpmdb.c:1957 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/rpmdb.c:1824 +#: lib/rpmdb.c:1961 #, c-format msgid "temporary database %s already exists" msgstr "geçici veritabaný %s mevcut" -#: lib/rpmdb.c:1830 +#: lib/rpmdb.c:1967 #, fuzzy, c-format msgid "creating directory: %s\n" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/rpmdb.c:1832 +#: lib/rpmdb.c:1969 #, c-format msgid "error creating directory %s: %s" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/rpmdb.c:1839 +#: lib/rpmdb.c:1976 #, fuzzy, c-format msgid "opening old database with dbi_major %d\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/rpmdb.c:1848 +#: lib/rpmdb.c:1985 #, fuzzy, c-format msgid "opening new database with dbi_major %d\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/rpmdb.c:1870 +#: lib/rpmdb.c:2007 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor" -#: lib/rpmdb.c:1902 +#: lib/rpmdb.c:2039 #, c-format msgid "cannot add record originally at %d" msgstr "%d de yer alan kayýt saklayamýyor" -#: lib/rpmdb.c:1920 +#: lib/rpmdb.c:2057 msgid "failed to rebuild database; original database remains in place\n" msgstr "" -#: lib/rpmdb.c:1928 +#: lib/rpmdb.c:2065 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:1930 +#: lib/rpmdb.c:2067 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:2073 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s açýlamadý: %s" @@ -3224,7 +3205,7 @@ msgstr "" msgid "cannot open file %s: %s\n" msgstr "%s dosyasý açýlamýyor: " -#: lib/rpminstall.c:235 lib/rpminstall.c:516 +#: lib/rpminstall.c:235 lib/rpminstall.c:499 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "hata: %s yüklenemedi\n" @@ -3258,26 +3239,21 @@ msgstr "ba msgid "installing binary packages\n" msgstr "paket yüklemek" -#: lib/rpminstall.c:440 -#, fuzzy, c-format -msgid "searching for package %s\n" -msgstr "%s paketi bulunamadý\n" - -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:438 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" birden fazla paketi tanýmlýyor\n" -#: lib/rpminstall.c:478 +#: lib/rpminstall.c:461 msgid "removing these packages would break dependencies:\n" msgstr "bu paketin silinmesi aþaðýdaki baðýmlýlýklarý etkileyecektir:\n" -#: lib/rpminstall.c:505 +#: lib/rpminstall.c:488 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "hata: %s eriþilemiyor\n" -#: lib/rpminstall.c:511 +#: lib/rpminstall.c:494 #, c-format msgid "Installing %s\n" msgstr "%s yükleniyor\n" @@ -3616,40 +3592,35 @@ msgstr "%s dizinin olu msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/uninstall.c:40 +#: lib/uninstall.c:39 #, c-format msgid "cannot remove %s - directory not empty" msgstr "%s silinemedi - belirtilen dizin boþ deðil" -#: lib/uninstall.c:43 +#: lib/uninstall.c:42 #, c-format msgid "rmdir of %s failed: %s" msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s" -#: lib/uninstall.c:51 +#: lib/uninstall.c:50 #, c-format msgid "removal of %s failed: %s" msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s" -#: lib/uninstall.c:89 -#, c-format -msgid "cannot read header at %d for uninstall" -msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý" - -#: lib/uninstall.c:130 +#: lib/uninstall.c:131 #, c-format msgid "will remove files test = %d\n" msgstr "" -#: lib/uninstall.c:198 +#: lib/uninstall.c:199 msgid "running postuninstall script (if any)\n" msgstr "" -#: lib/uninstall.c:212 +#: lib/uninstall.c:213 msgid "removing database entry\n" msgstr "" -#: lib/uninstall.c:396 +#: lib/uninstall.c:397 msgid "execution of script failed" msgstr "betik (script) çalýþtýrýlamadý " @@ -3717,6 +3688,25 @@ msgstr "%s-%s-%s 'nin ba msgid "rpmVerify: rpmdbOpen() failed\n" msgstr "%s: Eriþilemedi\n" +#~ msgid "cannot read header at %d for dependency check" +#~ msgstr "baðýmlýlýk sorgulamasý için %d numaralý baþlýk okunamýyor" + +#~ msgid "error: could not read database record\n" +#~ msgstr "hata: veritabaný kaydý okunamadý\n" + +#~ msgid "error looking for package %s\n" +#~ msgstr "%s pakedi aranýrken hata oluþtu\n" + +#~ msgid "cannot read header at %d for lookup" +#~ msgstr "%d kaydýndan baþlýk bilgisi okunamadý" + +#, fuzzy +#~ msgid "searching for package %s\n" +#~ msgstr "%s paketi bulunamadý\n" + +#~ msgid "cannot read header at %d for uninstall" +#~ msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý" + #, fuzzy #~ msgid "cannot open file %s: %s" #~ msgstr "%s dosyasý açýlamýyor: " diff --git a/python/upgrade.c b/python/upgrade.c index 1ce68e4..a2db940 100644 --- a/python/upgrade.c +++ b/python/upgrade.c @@ -589,7 +589,7 @@ int ugFindUpgradePackages(struct pkgSet *psp, char *installRoot) rpmSetVerbosity(RPMMESS_FATALERROR); old = rpmErrorSetCallback(emptyErrorCallback); - if (rpmdbOpenForTraversal(installRoot, &db)) { + if (rpmdbOpen(installRoot, &db, O_RDONLY, 0644)) { /*logMessage("failed opening %s/var/lib/rpm/packages.rpm", installRoot);*/ return(-1); -- 2.7.4