diff --git a/.lclintrc b/.lclintrc index 60890518d..ca9175ec7 100644 --- a/.lclintrc +++ b/.lclintrc @@ -10,9 +10,6 @@ -unrecogcomments # XXX ignore doxygen markings - -#-deepbreak # shortcut 485 occurences - +strict # lclint level -includenest 16 # getting deep, sigh diff --git a/CHANGES b/CHANGES index 089af5285..0cf43b710 100644 --- a/CHANGES +++ b/CHANGES @@ -98,6 +98,7 @@ - use mmap when calculating file digests on verify, ~20% faster. - permit --dbpath and --root with signature (i.e. --import) modes. - beecrypt: add types.h, eliminate need for config.gnu.h. + - rescusitate --rebuild. 4.0.3 -> 4.0.4: - solaris: translate i86pc to i386 (#57182). diff --git a/Doxyfile.in b/Doxyfile.in index 597faa4b7..c2f46064f 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -360,7 +360,6 @@ INPUT = \ @top_srcdir@/lib/cpio.c \ @top_srcdir@/lib/cpio.h \ @top_srcdir@/lib/depends.c \ - @top_srcdir@/lib/depends.h \ @top_srcdir@/lib/formats.c \ @top_srcdir@/lib/fs.c \ @top_srcdir@/lib/fsm.c \ diff --git a/beecrypt/debug.h b/beecrypt/debug.h index 44c8d6471..19376c043 100644 --- a/beecrypt/debug.h +++ b/beecrypt/debug.h @@ -6,13 +6,6 @@ #include -#ifdef __LCLINT__ -#define ntohl(_x) (_x) -#define ntohs(_x) (_x) -#define htonl(_x) (_x) -#define htons(_x) (_x) -#endif - #ifdef DMALLOC #include #endif diff --git a/build.c b/build.c index a2a8436da..1a577f95a 100644 --- a/build.c +++ b/build.c @@ -7,6 +7,9 @@ #include #include +#include "rpmte.h" +#include "rpmts.h" + #include "build.h" #include "debug.h" @@ -28,6 +31,8 @@ static int checkSpec(rpmTransactionSet ts, Header h) && !headerIsEntry(h, RPMTAG_CONFLICTNAME)) return 0; + rc = rpmtransAddPackage(ts, h, NULL, 0, NULL); + rc = rpmdepCheck(ts, &conflicts, &numConflicts); /*@-branchstate@*/ if (rc == 0 && conflicts) { @@ -38,6 +43,9 @@ static int checkSpec(rpmTransactionSet ts, Header h) } /*@=branchstate@*/ + /* XXX nuke the added package. */ + rpmtransClean(ts); + return rc; } diff --git a/build/buildio.h b/build/buildio.h index d5bc8a455..dc3800b04 100644 --- a/build/buildio.h +++ b/build/buildio.h @@ -8,7 +8,6 @@ * @todo Eliminate, merge into rpmlib. */ -#include "psm.h" #include "rpmbuild.h" /** diff --git a/build/files.c b/build/files.c index e223024d9..8110530cd 100644 --- a/build/files.c +++ b/build/files.c @@ -14,6 +14,9 @@ #include #include +#include "psm.h" +#include "rpmfi.h" +#include "rpmte.h" #include "buildio.h" #include "myftw.h" diff --git a/build/pack.c b/build/pack.c index c130e0a19..0aa6d9198 100644 --- a/build/pack.c +++ b/build/pack.c @@ -7,9 +7,11 @@ #include #include -#include "buildio.h" -#include "depends.h" +#include "psm.h" +#include "rpmfi.h" + +#include "buildio.h" #include "legacy.h" /* XXX providePackageNVR */ #include "signature.h" diff --git a/build/spec.c b/build/spec.c index 18280e7c8..684a61068 100644 --- a/build/spec.c +++ b/build/spec.c @@ -6,6 +6,8 @@ #include "system.h" #include "buildio.h" +#include "rpmfi.h" + #include "debug.h" /*@-redecl@*/ diff --git a/lib/Makefile.am b/lib/Makefile.am index 50a8a6f44..e6a07095b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -17,7 +17,7 @@ pkgincdir = $(pkgincludedir) pkginc_HEADERS = \ misc.h rpmcli.h rpmlib.h stringbuf.h noinst_HEADERS = \ - cpio.h depends.h fsm.h manifest.h psm.h \ + cpio.h fsm.h manifest.h psm.h \ rpmal.h rpmds.h rpmfi.h rpmlead.h rpmte.h rpmts.h signature.h mylibpaths = \ diff --git a/lib/depends.c b/lib/depends.c index 2b7bc893c..6b50e6a65 100644 --- a/lib/depends.c +++ b/lib/depends.c @@ -8,8 +8,11 @@ #include /* XXX rpmExpand("%{_dependency_whiteout}" */ -#define _NEED_TEITERATOR 1 -#include "depends.h" +#include "rpmal.h" +#include "rpmds.h" +#include "rpmfi.h" +#include "rpmte.h" +#include "rpmts.h" #include "rpmdb.h" /* XXX response cache needs dbiOpen et al. */ @@ -178,7 +181,7 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, if (!duplicate) ts->orderCount++; - pkgKey = alAddPackage(ts->addedPackages, pkgKey, teGetKey(p), + pkgKey = alAddPackage(&ts->addedPackages, pkgKey, teGetKey(p), teGetDS(p, RPMTAG_PROVIDENAME), teGetFI(p, RPMTAG_BASENAMES)); if (pkgKey == RPMAL_NOMATCH) { @@ -302,7 +305,7 @@ void rpmtransAvailablePackage(rpmTransactionSet ts, Header h, fnpyKey key) TFI_t fi = fiNew(ts, NULL, h, RPMTAG_BASENAMES, scareMem); /* XXX FIXME: return code RPMAL_NOMATCH is error */ - (void) alAddPackage(ts->availablePackages, RPMAL_NOMATCH, key, + (void) alAddPackage(&ts->availablePackages, RPMAL_NOMATCH, key, provides, fi); fi = fiFree(fi, 1); provides = dsFree(provides); @@ -1542,6 +1545,7 @@ assert(newOrderCount == ts->orderCount); ts->orderAlloced = ts->orderCount; orderList = _free(orderList); +#ifdef DYING /* Clean up after dependency checks */ pi = teInitIterator(ts); while ((p = teNextIterator(pi)) != NULL) { @@ -1550,6 +1554,10 @@ assert(newOrderCount == ts->orderCount); pi = teFreeIterator(pi); ts->addedPackages = alFree(ts->addedPackages); + ts->numAddedPackages = 0; +#else + rpmtransClean(ts); +#endif return 0; } diff --git a/lib/depends.h b/lib/depends.h deleted file mode 100644 index 87b58fb3e..000000000 --- a/lib/depends.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef H_DEPENDS -#define H_DEPENDS - -/** \ingroup rpmdep rpmtrans - * \file lib/depends.h - * Structures used for dependency checking. - */ - -#include -#include - -#include "rpmds.h" -#include "rpmfi.h" -#include "rpmal.h" - -/*@unchecked@*/ -/*@-exportlocal@*/ -extern int _cacheDependsRC; -/*@=exportlocal@*/ - -#include "rpmts.h" - -/* XXX FIXME: rpmTransactionSet not opaque */ -#include "rpmte.h" - -#ifdef DYING -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Return (malloc'd) header name-version-release string. - * @param h header - * @retval np name tag value - * @return name-version-release string - */ -/*@only@*/ char * hGetNEVR(Header h, /*@out@*/ const char ** np ) - /*@modifies *np @*/; - -#ifdef __cplusplus -} -#endif -#endif - -#endif /* H_DEPENDS */ diff --git a/lib/fsm.c b/lib/fsm.c index 0eb92daa2..b98a70e94 100644 --- a/lib/fsm.c +++ b/lib/fsm.c @@ -7,6 +7,11 @@ #include "psm.h" #include "rpmerr.h" + +#include "rpmfi.h" +#include "rpmte.h" +#include "rpmts.h" + #include "debug.h" /*@access FD_t @*/ diff --git a/lib/package.c b/lib/package.c index 80ee22e4a..bed218217 100644 --- a/lib/package.c +++ b/lib/package.c @@ -9,7 +9,7 @@ #include #include -#include "depends.h" +#include "rpmts.h" #include "misc.h" /* XXX stripTrailingChar() */ #include "legacy.h" /* XXX providePackageNVR() and compressFileList() */ diff --git a/lib/problems.c b/lib/problems.c index acf692c48..c73f24998 100644 --- a/lib/problems.c +++ b/lib/problems.c @@ -6,7 +6,8 @@ #include -#include "depends.h" +#include "rpmts.h" + #include "misc.h" #include "debug.h" diff --git a/lib/psm.c b/lib/psm.c index 7485895bf..cf7ea446b 100644 --- a/lib/psm.c +++ b/lib/psm.c @@ -9,7 +9,11 @@ #include #include -#include "depends.h" +#include "rpmal.h" +#include "rpmds.h" +#include "rpmfi.h" +#include "rpmte.h" +#include "rpmts.h" #include "rpmlead.h" /* writeLead proto */ #include "signature.h" /* signature constants */ @@ -28,18 +32,12 @@ /*@access PSM_t@*/ /*@access TFI_t@*/ +/*@access transactionElement@*/ /* XXX rpmInstallSourcePackage */ /*@access rpmTransactionSet@*/ /*@access alKey@*/ /*@access rpmDepSet@*/ -#ifdef DYING -/*@-redecl -declundef -exportheadervar@*/ -/*@unchecked@*/ -extern const char * chroot_prefix; -/*@=redecl =declundef =exportheadervar@*/ -#endif - int rpmVersionCompare(Header first, Header second) { const char * one, * two; @@ -109,8 +107,8 @@ static struct tagMacro { * @return 0 always */ static int rpmInstallLoadMacros(TFI_t fi, Header h) - /*@globals rpmGlobalMacroContext, internalState @*/ - /*@modifies rpmGlobalMacroContext, internalState @*/ + /*@globals rpmGlobalMacroContext @*/ + /*@modifies rpmGlobalMacroContext @*/ { HGE_t hge = (HGE_t) fi->hge; struct tagMacro * tagm; @@ -498,7 +496,7 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts, FD_t fd, /*@-assignexpose@*/ fi->te = ts->order[0]; /*@=assignexpose@*/ -/*@i@*/ fi->te->fd = fd; + fi->te->fd = fdLink(fd, "installSourcePackage"); hge = fi->hge; hfd = fi->hfd; @@ -623,12 +621,21 @@ exit: if (h) h = headerFree(h, "InstallSourcePackage exit"); /*@-branchstate@*/ - if (fi) + if (fi) { + if (fi->te->fd) + (void) Fclose(fi->te->fd); + fi->te->fd = NULL; + fi->te = NULL; fi = fiFree(fi, 1); + } /*@=branchstate@*/ psm->fi = NULL; psm->te = NULL; + + /* XXX nuke the added package(s). */ + rpmtransClean(ts); + psm->ts = rpmtsUnlink(ts, "InstallSourcePackage"); return rc; @@ -1586,7 +1593,7 @@ assert(psm->mi == NULL); rc = RPMRC_FAIL; break; } - /*@-nullpass@*/ /* LCL: psm->fd != NULL here. */ + /*@-nullpass@*/ /* FIX: fdDup mey return NULL. */ xx = Fflush(psm->fd); psm->cfd = Fdopen(fdDup(Fileno(psm->fd)), psm->rpmio_flags); /*@=nullpass@*/ @@ -1740,7 +1747,9 @@ assert(psm->mi == NULL); psm->what = RPMCALLBACK_CPIO_ERROR; psm->amount = 0; psm->total = 0; + /*@-nullstate@*/ /* FIX: psm->fd may be NULL. */ xx = psmStage(psm, PSM_NOTIFY); + /*@=nullstate@*/ } if (fi->h && (psm->goal == PSM_PKGERASE || psm->goal == PSM_PKGSAVE)) @@ -1816,13 +1825,6 @@ assert(psm->mi == NULL); /*@=superuser@*/ psm->chrootDone = ts->chrootDone = 1; if (ts->rpmdb != NULL) ts->rpmdb->db_chrootDone = 1; -#ifdef DYING - /*@-onlytrans@*/ - /*@-mods@*/ - chroot_prefix = ts->rootDir; - /*@=mods@*/ - /*@=onlytrans@*/ -#endif } break; case PSM_CHROOT_OUT: diff --git a/lib/psm.h b/lib/psm.h index 09685ceea..38742da1f 100644 --- a/lib/psm.h +++ b/lib/psm.h @@ -7,7 +7,6 @@ */ #include "fsm.h" -#include "depends.h" /** */ diff --git a/lib/query.c b/lib/query.c index dd642635c..5b7d429de 100644 --- a/lib/query.c +++ b/lib/query.c @@ -15,7 +15,8 @@ #include #include -#include "depends.h" +#include "rpmts.h" + #include "manifest.h" #include "debug.h" diff --git a/lib/rpmal.c b/lib/rpmal.c index ac4ba00ff..41a4dfbb6 100644 --- a/lib/rpmal.c +++ b/lib/rpmal.c @@ -6,7 +6,9 @@ #include -#include "depends.h" +#include "rpmal.h" +#include "rpmds.h" +#include "rpmfi.h" #include "debug.h" @@ -287,7 +289,7 @@ void alDelPackage(availableList al, alKey pkgKey) availablePackage alp; TFI_t fi; - if (al->list == NULL) + if (al == NULL || al->list == NULL) return; /* XXX can't happen */ alp = al->list + pkgNum; @@ -366,12 +368,19 @@ fprintf(stderr, "*** del %p[%d]\n", al->list, pkgNum); return; } -alKey alAddPackage(availableList al, alKey pkgKey, fnpyKey key, +alKey alAddPackage(availableList * alistp, alKey pkgKey, fnpyKey key, rpmDepSet provides, TFI_t fi) { - alNum pkgNum = alKey2Num(al, pkgKey); + alNum pkgNum; + availableList al; availablePackage alp; + /* If list doesn't exist yet, create. */ + if (*alistp == NULL) + *alistp = alCreate(5); + al = *alistp; + pkgNum = alKey2Num(al, pkgKey); + if (pkgNum >= 0 && pkgNum < al->size) { alDelPackage(al, pkgKey); } else { @@ -566,10 +575,12 @@ assert(ix < 0x10000); void alMakeIndex(availableList al) { - availableIndex ai = &al->index; + availableIndex ai; availablePackage alp; int i; + if (al == NULL) return; + ai = &al->index; if (ai->size || al->list == NULL) return; for (i = 0; i < al->size; i++) { diff --git a/lib/rpmal.h b/lib/rpmal.h index fe54a9d80..e611903e9 100644 --- a/lib/rpmal.h +++ b/lib/rpmal.h @@ -13,9 +13,11 @@ typedef /*@abstract@*/ struct availableList_s * availableList; * @param delta no. of entries to add on each realloc * @return al new available list */ +/*@-exportlocal@*/ /*@only@*/ availableList alCreate(int delta) /*@*/; +/*@=exportlocal@*/ /** * Free available packages, items, and directory members. @@ -32,24 +34,24 @@ availableList alFree(/*@only@*/ /*@null@*/ availableList al) * @param pkgKey package key */ /*@-exportlocal@*/ -void alDelPackage(availableList al, /*@null@*/ alKey pkgKey) +void alDelPackage(/*@null@*/ availableList al, /*@null@*/ alKey pkgKey) /*@modifies al @*/; /*@=exportlocal@*/ /** * Add package to available list. - * @param al available list + * @param alistp address of available list * @param pkgKey package key, RPMAL_NOMATCH to force an append * @param key associated file name/python object * @param provides provides dependency set * @param fi file info set * @return available package index */ -alKey alAddPackage(availableList al, +alKey alAddPackage(availableList * alistp, /*@dependent@*/ /*@null@*/ alKey pkgKey, /*@dependent@*/ /*@null@*/ fnpyKey key, /*@null@*/ rpmDepSet provides, /*@null@*/ TFI_t fi) - /*@modifies al, provides, fi @*/; + /*@modifies *alistp, provides, fi @*/; /** * Add package provides to available list index. @@ -68,7 +70,7 @@ void alAddProvides(availableList al, * Generate index for available list. * @param al available list */ -void alMakeIndex(availableList al) +void alMakeIndex(/*@null@*/ availableList al) /*@modifies al @*/; /** diff --git a/lib/rpmchecksig.c b/lib/rpmchecksig.c index c5974ca18..37a83601b 100644 --- a/lib/rpmchecksig.c +++ b/lib/rpmchecksig.c @@ -9,7 +9,7 @@ #include #include "rpmpgp.h" -#include "depends.h" +#include "rpmts.h" #include "rpmlead.h" #include "signature.h" diff --git a/lib/rpmcli.h b/lib/rpmcli.h index 71c5a5d8e..30ca0470e 100644 --- a/lib/rpmcli.h +++ b/lib/rpmcli.h @@ -427,16 +427,16 @@ extern int packagesTotal; * Install source rpm package. * @param ts transaction set * @param arg source rpm file name - * @retval specFile address of (installed) spec file name + * @retval specFilePtr address of (installed) spec file name * @retval cookie * @return 0 on success */ int rpmInstallSource(rpmTransactionSet ts, const char * arg, - /*@null@*/ /*@out@*/ const char ** specFile, + /*@null@*/ /*@out@*/ const char ** specFilePtr, /*@null@*/ /*@out@*/ const char ** cookie) /*@globals rpmGlobalMacroContext, fileSystem, internalState@*/ - /*@modifies ts, *specFile, *cookie, rpmGlobalMacroContext, + /*@modifies ts, *specFilePtr, *cookie, rpmGlobalMacroContext, fileSystem, internalState @*/; /** \ingroup rpmcli diff --git a/lib/rpmfi.c b/lib/rpmfi.c index 2b332af95..f2970b013 100644 --- a/lib/rpmfi.c +++ b/lib/rpmfi.c @@ -7,7 +7,10 @@ #include "fsm.h" /* XXX newFSM and CPIO_MAP_* */ -#include "depends.h" +#include "rpmfi.h" +#include "rpmte.h" +#include "rpmts.h" + #include "misc.h" /* XXX stripTrailingChar */ #include "debug.h" diff --git a/lib/rpminstall.c b/lib/rpminstall.c index a248f4d51..3ee0c732b 100644 --- a/lib/rpminstall.c +++ b/lib/rpminstall.c @@ -6,7 +6,8 @@ #include -#include "depends.h" /* XXX ts->rpmdb */ +#include "rpmts.h" /* XXX ts->rpmdb */ + #include "manifest.h" #include "misc.h" /* XXX for rpmGlob() */ #include "debug.h" @@ -19,8 +20,6 @@ /*@access IDTX @*/ /*@access IDT @*/ -extern int _rpmio_debug; - /*@unchecked@*/ static int hashesPrinted = 0; @@ -709,8 +708,6 @@ int rpmInstallSource(rpmTransactionSet ts, const char * arg, FD_t fd; int rc; -fprintf(stderr, "*** rpmInstallSource(%p,%s,%p,%p)\n", ts, arg, specFilePtr, cookie); -_rpmio_debug = -1; fd = Fopen(arg, "r.ufdio"); if (fd == NULL || Ferror(fd)) { rpmMessage(RPMMESS_ERROR, _("cannot open %s: %s\n"), arg, Fstrerror(fd)); diff --git a/lib/rpmlibprov.c b/lib/rpmlibprov.c index 2b152d4a1..92ab4a778 100644 --- a/lib/rpmlibprov.c +++ b/lib/rpmlibprov.c @@ -6,7 +6,7 @@ #include -#include "depends.h" +#include "rpmds.h" #include "debug.h" diff --git a/lib/rpmte.c b/lib/rpmte.c index 7c3974370..bf98b6375 100644 --- a/lib/rpmte.c +++ b/lib/rpmte.c @@ -4,9 +4,13 @@ */ #include "system.h" -#define _NEED_TEITERATOR 1 #include "psm.h" +#include "rpmds.h" +#include "rpmfi.h" +#include "rpmte.h" +#include "rpmts.h" + #include "debug.h" /*@unchecked@*/ @@ -455,6 +459,9 @@ transactionElement teNextIterator(teIterator tei) transactionElement te = NULL; int oc = -1; + if (tei == NULL || tei->ts == NULL || tei->ts->order == NULL) + return te; + if (tei->reverse) { if (tei->oc >= 0) oc = tei->oc--; } else { diff --git a/lib/rpmte.h b/lib/rpmte.h index 16b4dc448..853d84b8a 100644 --- a/lib/rpmte.h +++ b/lib/rpmte.h @@ -110,7 +110,6 @@ struct transactionElement_s { }; -#if defined(_NEED_TEITERATOR) /** * Iterator across transaction elements, forward on install, backward on erase. */ @@ -121,7 +120,6 @@ struct teIterator_s { int ocsave; /*!< last returned iterator index. */ int oc; /*!< iterator index. */ }; -#endif #ifdef __cplusplus extern "C" { @@ -431,7 +429,6 @@ rpmDepSet teGetDS(transactionElement te, rpmTag tag) TFI_t teGetFI(transactionElement te, rpmTag tag) /*@*/; -#if defined(_NEED_TEITERATOR) /** * Return transaction element index. * @param tei transaction element iterator @@ -499,8 +496,6 @@ transactionElement teNextIterator(teIterator tei) transactionElement teNext(teIterator tei, rpmTransactionType type) /*@modifies tei @*/; -#endif /* defined(_NEED_TEITERATOR) */ - #ifdef __cplusplus } #endif diff --git a/lib/rpmts.c b/lib/rpmts.c index ca7ffc3c0..92e3ec47e 100644 --- a/lib/rpmts.c +++ b/lib/rpmts.c @@ -8,8 +8,8 @@ #include /* XXX rpmtsOpenDB() needs rpmGetPath */ #include /* XXX rpmtransFree() needs pgpFreeDig */ -#define _NEED_TEITERATOR 1 -#include "depends.h" +#include "rpmte.h" +#include "rpmts.h" #include "rpmdb.h" /* XXX stealing db->db_mode. */ @@ -102,9 +102,19 @@ char * hGetNEVR(Header h, const char ** np) void rpmtransClean(rpmTransactionSet ts) { if (ts) { - HFD_t hfd = headerFreeData; + teIterator pi; transactionElement p; + + /* Clean up after dependency checks. */ + pi = teInitIterator(ts); + while ((p = teNextIterator(pi)) != NULL) + teCleanDS(p); + pi = teFreeIterator(pi); + + ts->addedPackages = alFree(ts->addedPackages); + ts->numAddedPackages = 0; + if (ts->sig != NULL) - ts->sig = hfd(ts->sig, ts->sigtype); + ts->sig = headerFreeData(ts->sig, ts->sigtype); if (ts->dig != NULL) ts->dig = pgpFreeDig(ts->dig); } @@ -124,18 +134,8 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts) (void) rpmtsCloseDB(ts); - for (pi = teInitIterator(ts), oc = 0; (p = teNextIterator(pi)) != NULL; oc++) { -/*@-type -unqualifiedtrans @*/ - ts->order[oc] = teFree(ts->order[oc]); -/*@=type =unqualifiedtrans @*/ - } - pi = teFreeIterator(pi); -/*@-type +voidabstract @*/ /* FIX: double indirection */ - ts->order = _free(ts->order); -/*@=type =voidabstract @*/ - - ts->addedPackages = alFree(ts->addedPackages); ts->availablePackages = alFree(ts->availablePackages); + ts->numAvailablePackages = 0; ts->di = _free(ts->di); ts->removedPackages = _free(ts->removedPackages); if (ts->scriptFd != NULL) { @@ -146,6 +146,16 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts) ts->rootDir = _free(ts->rootDir); ts->currDir = _free(ts->currDir); + for (pi = teInitIterator(ts), oc = 0; (p = teNextIterator(pi)) != NULL; oc++) { +/*@-type -unqualifiedtrans @*/ + ts->order[oc] = teFree(ts->order[oc]); +/*@=type =unqualifiedtrans @*/ + } + pi = teFreeIterator(pi); +/*@-type +voidabstract @*/ /* FIX: double indirection */ + ts->order = _free(ts->order); +/*@=type =voidabstract @*/ + /*@-nullstate@*/ /* FIX: partial annotations */ rpmtransClean(ts); /*@=nullstate@*/ @@ -203,16 +213,13 @@ rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * rootDir) ts->chrootDone = 0; ts->numAddedPackages = 0; - ts->addedPackages = alCreate(ts->delta); - + ts->addedPackages = NULL; ts->numAvailablePackages = 0; - ts->availablePackages = alCreate(ts->delta); - - ts->orderAlloced = ts->delta; + ts->availablePackages = NULL; + ts->numAddedPackages = 0; + ts->orderAlloced = 0; ts->orderCount = 0; -/*@-type -abstract@*/ - ts->order = xcalloc(ts->orderAlloced, sizeof(*ts->order)); -/*@=type =abstract@*/ + ts->order = NULL; ts->sig = NULL; ts->dig = NULL; diff --git a/lib/rpmts.h b/lib/rpmts.h index 1b31e9b6a..fc2f12ce8 100644 --- a/lib/rpmts.h +++ b/lib/rpmts.h @@ -6,11 +6,19 @@ * Structures and prototypes used for an rpmTransactionSet */ +#include /* XXX hashTable */ +#include "rpmal.h" /* XXX availablePackage/relocateFileList ,*/ + /*@unchecked@*/ /*@-exportlocal@*/ extern int _ts_debug; /*@=exportlocal@*/ +/*@unchecked@*/ +/*@-exportlocal@*/ +extern int _cacheDependsRC; +/*@=exportlocal@*/ + /** \ingroup rpmdep * The set of packages to be installed/removed atomically. */ @@ -28,7 +36,7 @@ struct rpmTransactionSet_s { int filesystemCount; /*!< No. of mounted filesystems. */ /*@dependent@*/ const char ** filesystems; /*!< Mounted filesystem names. */ -/*@only@*/ +/*@only@*/ /*@null@*/ struct diskspaceInfo * di; /*!< Per filesystem disk/inode usage. */ int dbmode; /*!< Database open mode. */ diff --git a/lib/signature.c b/lib/signature.c index c57380050..3b9696734 100644 --- a/lib/signature.c +++ b/lib/signature.c @@ -9,7 +9,8 @@ #include /* XXX for rpmGetPath() */ #include "rpmdb.h" -#include "depends.h" +#include "rpmts.h" + #include "misc.h" /* XXX for dosetenv() and makeTempFile() */ #include "legacy.h" /* XXX for mdbinfile() */ #include "rpmlead.h" diff --git a/lib/transaction.c b/lib/transaction.c index 7b96fa848..4e5e5aad3 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -6,9 +6,13 @@ #include /* XXX for rpmExpand */ -#define _NEED_TEITERATOR 1 #include "psm.h" +#include "rpmds.h" +#include "rpmfi.h" +#include "rpmte.h" +#include "rpmts.h" + #include "rpmdb.h" #include "fprint.h" #include "legacy.h" /* XXX domd5 */ diff --git a/lib/ts.c b/lib/ts.c index 19f0f2060..1b7dedcc7 100644 --- a/lib/ts.c +++ b/lib/ts.c @@ -5,7 +5,7 @@ #include #include -#include "depends.h" +#include "rpmts.h" #include "debug.h" diff --git a/lib/verify.c b/lib/verify.c index 56ece5423..a4a046119 100644 --- a/lib/verify.c +++ b/lib/verify.c @@ -6,6 +6,9 @@ #include "system.h" #include "psm.h" +#include "rpmfi.h" +#include "rpmts.h" + #include #include "legacy.h" /* XXX domd5(), uidToUname(), gnameToGid */ diff --git a/po/cs.po b/po/cs.po index 58af59a5d..4ea9bce11 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "chybné závislosti při sestavování:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Nelze otevřít spec soubor %s: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Nelze otevřít rouru pro tar: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Nelze číst spec soubor z %s\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Nelze přejmenovat %s na %s: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "nemohu zjistit stav %s: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "Soubor %s není obyčejný soubor.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Nezdá se, že by %s byl spec soubor.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Sestavuji cílové platformy: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Sestavuji pro cíl %s\n" @@ -203,124 +203,124 @@ msgstr "Tento program lze voln msgid "Usage: %s {--help}\n" msgstr "Použití: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "Volba --rcfile byla odstraněna.\n" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "Použijte volbu \"--macros \".\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Interní chyba při zpracování parametrů (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "specifikovat lze jen jeden hlavní režim" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "najednou lze provést jen jeden typ dotazu či ověření" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "neočekávaný příznak pro dotaz" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "neočekávaný formát dotazu" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "neočekávaný zdroj dotazu" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath zadána pro operaci, která databázi nepoužívá" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "vynucena může být jen instalace, aktualizace, smazání zdrojových kódů a spec " "souboru" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "soubory mohou být přemístěny jen při instalaci balíčků" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "použít lze jen jeden z parametrů --prefix nebo --relocate" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate a --excludepath je možno použít jen při instalaci nových balíčků" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix je možno použít jen při instalaci nových balíčků" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "parametry pro --prefix musejí začínat znakem /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) může být použit jen při instalaci balíčků" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent může být použit jen při instalaci balíčků" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles může být použit jen při instalaci balíčků" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs může být použit jen při instalaci balíčků" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs může být použit jen při instalaci balíčků" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs může být použit jen při instalaci balíčků" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "použít lze jen jeden z parametrů --excludedocs a --includedocs" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch může být použit jen při instalaci balíčků" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos může být použit jen při instalaci balíčků" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize může být použit jen při instalaci balíčků" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches může být použit jen při instalaci balíčků" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles může být použit jen při instalaci balíčků" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb může být použit jen při instalaci a odstraňování balíčků" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -328,7 +328,7 @@ msgstr "" "volba pro potlačení skriptů může být použita jen při instalaci nebo při " "odstraňování balíčků" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -336,7 +336,7 @@ msgstr "" "volba pro potlačení triggerů může být použita jen při instalaci nebo " "odstraňování balíčků" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -344,13 +344,13 @@ msgstr "" "--nodeps může být použit jen při sestavování, rekompilaci, instalaci, " "odstraňování a kontrole" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test může být použit jen při instalaci, odstraňování a sestavování" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -358,87 +358,87 @@ msgstr "" "--root (-r) může být použit jen při instalaci, odstraňování, dotazech nebo " "znovuvytvoření databáze" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "parametry pro --root (-r) musejí začínat znakem /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "žádné soubory k podepsání\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "přístup k souboru %s se nezdařil\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp nenalezeno: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Vložte heslovou frázi: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Chybná heslová fráze\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Heslová fráze je v pořádku.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Špatná %%_signature spec v souboru maker.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign může být použit jen při sestavování balíčků" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "spuštění selhalo\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "ke znovusestavení nezadány žádné balíčky" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "pro sestavení nezadány žádné spec soubory" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "pro sestavení nezadány žádné tar soubory" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "k podepsání nezadány žádné balíčky" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "nezadány žádné balíčky pro instalaci" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "k dotazu nezadány žádné parametry" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "pro kontrolu nezadány žádné balíčky" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "neočekávané parametry pro --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "k dotazu nezadány žádné parametry" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Nelze otevřít dočasný soubor.\n" @@ -516,180 +516,180 @@ msgstr "&& a || nen msgid "syntax error in expression\n" msgstr "chyba syntaxe ve výrazu\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK selhal: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Chybí '(' v %s %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Chybí ')' v %s(%s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "Neplatný %s token: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "Chybějící %s v %s %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Následuje neprázdný znak %s(): %s\n" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Špatná syntaxe: %s(%s)\n" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Špatná práva spec: %s(%s)\n" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Špatná práva adresáře: %s(%s)\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Neobvyklá délka locale: \"%.*s\" v %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Duplicitní locale %.*s v %%lang(%s)\n" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Dosažen limit pro %%docdir\n" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "Jen jeden parametr pro %%docdir\n" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "Dva soubory na jednom řádku: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Soubor musí začínat na \"/\": %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Nelze míchat speciální %%doc s ostatnímí formami: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "Soubor uveden dvakrát: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Soubor nesouhlasí s prefixem (%s): %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "Soubor nenalezen: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Špatný vlastník/skupina: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Soubor %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Soubor potřebuje úvodní \"/\": %s\n" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "Glob není dovolen: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "Soubor nenalezen globem: %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Nemohu otevřít %%files soubor %s: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "řádek: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Špatný soubor: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Nemohu spustit %s: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Nemohu provést fork %s: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s selhalo\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "Nemohu zapsat všechna data do %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Hledám %s: (použit %s)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "Selhalo vyhledání %s:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Zpracovávám soubory: %s-%s-%s\n" @@ -723,156 +723,156 @@ msgstr "getGidS: p msgid "Could not canonicalize hostname: %s\n" msgstr "Nemohu získat jméno počítače: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "vytváření archívu selhalo na souboru %s: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "vytváření archívu selhalo: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "zápis cpio_copy selhal: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "čtení cpio_copy selhalo: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Nemohu otevřít PreIn soubor: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Nemohu otevřít PreUn soubor: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Nemohu otevřít PostIn soubor: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Nemohu otevřít PostUn soubor: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Nemohu otevřít VerifyScript soubor: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Nemohu otevřít soubor se spuští (trigger): %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: otevření %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: čtení %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek selhal: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s není RPM balíček\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: čtení hlavičky z %s\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nemohu přečíst hlavičku z %s: %s\n" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nemohu zapsat hlavičku do %s: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "Špatná CSA data\n" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Nemohu zapsat hlavičku do %s: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Generuji podpis: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nemohu přečíst hlavičku z %s: %s\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "Nemohu otevřít %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "Nemohu zapsat balíček: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nemohu otevřít cíl pro podepsání %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nemohu přečíst hlavičku z %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nemohu zapsat hlavičku do %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nemohu přečíst payload z %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nemohu zapsat payload do %s: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Zapsáno: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Nemohu vygenerovat jméno souboru pro balíček %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "nemohu vytvořit %s: %s\n" @@ -1377,17 +1377,17 @@ msgstr "c msgid "lookup i18N strings in specfile catalog" msgstr "vyhledat i18N řetězce ve specfile katalogu" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "řádek %d: Špatné číslo: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "řádek %d: Špatné číslo %s: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "řádek %d: Špatné číslo %s: %s\n" @@ -1433,70 +1433,70 @@ msgstr "" msgid " failed - " msgstr "selhal - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "balíček %s je již nainstalován" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s ANO (rpmrc poskytuje)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s ANO (rpmlib poskytuje)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "špatný db soubor %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s ANO (db poskytuje)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "žádné balíčky\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) přidáno do keše závislostí.\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "NE " -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "ANO" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "odstraňuji %s-%s-%s \"%s\" z tsort relací.\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "========== ukládání tsort relací\n" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1504,20 +1504,20 @@ msgid "" msgstr "" "========== tsorting balíčků (pořadí, #předchůdce, #následovník, hloubka)\n" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "========== pouze úspěšné (pořadí dle prezentace)\n" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "SMYČKA:\n" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "========== pokračuje tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1566,47 +1566,47 @@ msgstr "nemohu otev msgid "file %s is on an unknown device\n" msgstr "soubor %s je na neznámém zařízení\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Adresáře, které nebyly explicitně zařazeny do balíčku:\n" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "vytvořen adresář %s s právy %04o.\n" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s uloženo jako %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s odstranění %s selhalo: Adresář není prázdný\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s selhal: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink %s selhal: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s vytvořen jako %s\n" @@ -2080,301 +2080,301 @@ msgid "generate signature" msgstr "generovat PGP/GPG podpis" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "balíček %s je pro jinou architekturu" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "balíček %s je pro jiný operační systém" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "balíček %s je již nainstalován" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "cesta %s v balíčku %s není přemístitelná" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "soubor %s způsobuje konflikt mezi instalovaným %s a %s" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "soubor %s z instalace %s koliduje se souborem z balíčku %s" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "balíček %s (který je novější, než %s) je již nainstalován" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "instalace balíčku %s potřebuje %ld%cB na systému souborů %s" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "instalace balíčku %s potřebuje %ld inodů na systému souborů %s" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "předtransakční syscall v balíčku %s: %s selhalo: %s" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "neznámá chyba %d vznikla při manipulaci s balíčkem %s" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " koliduje s %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " je nutné pro %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Datový typ %d není podporován\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "nemohu vytvořit %s: %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "nemohu zapsat do %%%s %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "očekávám balíček se zdrojovými kódy, nalezen však binární\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "zdrojový balíček neobsahuje .spec soubor\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: spouštím %s skript(y) (pokud existují)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s obsahuje %d souborů, test = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: scriptlet %s selhal (%d), přeskakuji %s-%s-%s\n" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "uživatel %s neexistuje - použit uživatel root\n" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - použita skupina root\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalování archívu selhalo %s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " na souboru " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nemohu otevřít %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s selhalo\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "nesprávný formát: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(neobsahuje žádné soubory)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normální " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "nahrazen " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "neinstalován " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "sdílen v síti " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(neznámý %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(chybí stav) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "balíček nemá vlastníka souboru ani seznamy id\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "nemohu provést dotaz %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "otevření %s selhalo: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "dotaz na %s se nezdařil\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "nelze provést dotaz na zdrojové balíčky starého formátu\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: Fread selhalo: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "žádné balíčky\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje žádné balíčky\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "žádný balíček neaktivuje %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Nemohu číst %s: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "žádný balíček neaktivuje %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "žádný balíček nevyžaduje %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "žádný balíček neposkytuje %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "soubor %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "soubor %s nevlastní žádný balíček\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "neplatné číslo balíčku: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "záznam balíčku číslo: %u\n" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "záznam %d nelze přečíst\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "balíček %s není nainstalován\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "špatný db soubor %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s ANO (db poskytuje)\n" @@ -2468,89 +2468,89 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "Připravuji..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "Připravuji balíčky pro instalaci..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Stahuji %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... jako %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "přeskakuji %s - přenos selhal - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "balíček %s není přemístitelný\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "chyba při čtení ze souboru %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "soubor %s vyžaduje novější verzi RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s nemůže být nainstalován\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "nalezeno %d zdrojových a %d binárních balíčků\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "nevyřešené závislosti:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "instaluji binární balíčky\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "nemohu otevřít soubor %s: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" určuje více balíčků\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "odstranění těchto balíčků by porušilo závislosti:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "nemohu otevřít %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Instaluji %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2660,171 +2660,171 @@ msgstr "Nemohu otev msgid "cannot open Packages database in %s\n" msgstr "nemohu otevřít databázi balíčků v %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "není obyčejný soubor -- přeskakuji kontrolu velikosti\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" "Předpokl. délka: %12d = hlavička(%d)+signatura(%d)+výplň(%d)+data(%d)\n" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "Aktuální délka: %12d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Chybí podpis\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Starý PGP podpis\n" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starý (pouze interní) podpis! Jak jste to získali!?\n" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nemohu spustit %s: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "pgp selhalo\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "pgp selhalo při zápisu podpisu\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "Velikost podpisu PGP: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "nemohu číst podpis\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Přečteno %d bajtů PGP podpisu\n" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "gpg selhalo\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "gpg selhalo při zápisu podpisu\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "Velikost GPG podpisu: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Přečteno %d bajtů GPG podpisu\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Špatná %%_signature spec v souboru maker\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru\n" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru\n" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Velikost hlavičky je přiliš velká" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "vynechat případné MD5 součty" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Chybí podpis\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s přeskočeno, protože chybí příznak\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "vynechávám adresář %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "získávám seznam připojených systémů souborů\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "chybí %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nevyřešené závislosti pro %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: kontrola digestu v hlavičce selhala\n" diff --git a/po/da.po b/po/da.po index 0718a7269..986f77aed 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -10,53 +10,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9alpha\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "afhćngighedskrav for pakkeopbygning kunne ikke imřdekommes:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Kan ikke ĺbne spec-fil %s: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunne ikke ĺbne tar-viderefřrsel: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Kunne ikke lćse spec-fil fra %s\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Kunne ikke omdřbe %s til %s: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunne ikke finde %s: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "Filen %s er ikke en regulćr fil.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Filen %s synes ikke at vćre en spec-fil.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Opbygger mĺl-platforme: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Opbygger for mĺl %s\n" @@ -203,135 +203,135 @@ msgstr "Dette program kan frit distribueres under betingelserne i GNU GPL" msgid "Usage: %s {--help}\n" msgstr "Brug: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "Tilvalget --rcfile er fjernet.\n" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "Brug \"--macros \" i stedet..\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "kun ét hovedtilvalg kan angives" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "kun én af forespřrgsel/verificér kan udfřres ad gangen" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "uventet forespřrgselsflag" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "uventet forespřrgselsformat" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "uventet forespřrgselskilde" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath angivet ved en operation, der ikke benytter en database" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "kun installation, opgradering, rmsource og rmspec kan tvinges igennem" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "filer kan kun omrokeres under installation" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "kun én af --prefix eller --relocate kan bruges" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate og --excludepath kan kun bruges, nĺr nye pakker installeres" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan kun bruges, nĺr nye pakker installeres" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "parametre til --prefix skal starte med et /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan kun angives ved installation" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent kan kun angives ved installation" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan kun angives ved installation" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs kan kun angives ved installation" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs kan kun angives ved installation" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs kan kun angives ved installation" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "kun én af --excludedocs og --includedocs kan angives" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch kan kun angives ved installation" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos kan kun angives ved installation" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize kan kun angives ved installation" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches kan kun angives ved installation" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles kan kun angives ved installation" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb kan kun angives ved installation og sletning" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb kan kun angives ved installation og sletning" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--notriggers kan kun angives ved installation og sletning af pakker" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -339,13 +339,13 @@ msgstr "" "--nodeps kan kun angives ved opbygning, genopbygning, genoversćttelse, " "installation, sletning og verifikation" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test kan kun angives ved installation, sletning og opbygning" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -353,87 +353,87 @@ msgstr "" "--root (-r) kan kun angives ved installation, sletning, forespřrgsel og " "genopbygning af databasen" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "parameteren til --root (-r) skal starte med et /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "ingen filer at underskrive\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "kan ikke tilgĺ filen %s\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp ikke fundet: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Indtast adgangskode: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Adgangskode ikke godkendt\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Adgangskode godkendt.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Ugyldig angivelse af %%_signature i makrofil.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign kan kun bruges ved pakkeopbygning" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "eksekvering mislykkedes\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "ingen pakkefiler angivet til genopbygning" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "ingen spec-fil angivet til opbygning" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "ingen tar-arkiver angivet til opbygning" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "ingen pakker angivet ved signering" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "ingen pakker angivet ved installation" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "ingen parametre angivet ved forespřrgsel" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "ingen parametre angivet ved verifikation" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "uventede parametre til --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "ingen parametre angivet ved forespřrgsel" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Kunne ikke ĺbne midlertidig fil.\n" @@ -511,180 +511,180 @@ msgstr "&& og || underst msgid "syntax error in expression\n" msgstr "syntaksfejl i udtryk\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK-fejl: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Manglende '(' i %s %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Manglende ')' i %s %s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ugyldigt %s-symbol: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Manglende '(' i %s %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Ikke-mellemrum efterfřlger %s(): %s\n" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Ugyldig syntaks: %s(%s)\n" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Ugyldig tilstandsangivelse: %s(%s)\n" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Ugyldig dirmode-spec: %s(%s)\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Anormal locale-lćngde: \"%.*s\" i %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Dobbelt locale %.*s i %%lang(%s)\n" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Trćfningsgrćnse for %%docdir\n" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "Kun et parameter for %%docdir\n" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "To filer pĺ én linie: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Fil skal begynde med \"/\": %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Kan ikke blande special-%%doc med andre former: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "Fil angivet to gange: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolsk lćnke peger pĺ BuildRoot: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Fil passer ikke til prćfiks (%s): %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "Fil ikke fundet: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Ugyldig ejer/gruppe: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Fil %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Fil krćver foranstillet \"/\": %s\n" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "linie %d: Filnavn ikke tilladt: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "Fil ikke fundet med glob: %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Kunne ikke ĺbne '%%files'-fil %s: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "linie: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Ugyldig fil: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Kunne ikke udfřre %s: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Kunne ikke fraspalte ny proces til %s: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s mislykkedes\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "kunne ikke skrive alle data til %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Finder %s: (benytter %s)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "Kunne ikke finde %s:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Gennemlřber filer: %s-%s-%s\n" @@ -720,156 +720,156 @@ msgstr "getGnameS: for mange gid'er\n" msgid "Could not canonicalize hostname: %s\n" msgstr "Kunne ikke kanonisere vćrtsnavn: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy-skrivning mislykkedes: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy-lćsning mislykkedes: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Kunne ikke ĺbne 'PreIn'-fil: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Kunne ikke ĺbne 'PreUn'-fil: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Kunne ikke ĺbne 'PostIn'-fil: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Kunne ikke ĺbne 'PostUn'-fil: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Kunne ikke ĺbne 'VerifyScript'-fil: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Kunne ikke ĺbne skriptfilen Trigger: %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: ĺbn %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: lćs %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fread mislykkedes: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s er ikke nogen RPM-pakke\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: lćser hoved fra %s\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Kunne ikke lćse hoved fra %s: %s\n" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Kunne ikke skrive hoved til %s: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "Ugyldige CSA-data\n" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Kunne ikke skrive hoved til %s: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Genererer signatur: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Kunne ikke lćse hoved fra %s: %s\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "Kunne ikke ĺbne %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Kunne ikke ĺbne sigtarget %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Kunne ikke lćse hoved fra %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Kunne ikke skrive hoved til %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Kunne ikke lćse pakkeindhold fra %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Kunne ikke generere filnavn til oprettelse af pakke %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "kan ikke oprette %s: %s\n" @@ -1377,17 +1377,17 @@ msgstr "gennemtving m msgid "lookup i18N strings in specfile catalog" msgstr "slĺ i18N-strenge op i spec-fil katalog" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linie %d: Ugyldigt tal: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linie %d: Ugyldigt 'no%s'-tal: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linie %d: Ugyldigt %s-tal: %s\n" @@ -1434,90 +1434,90 @@ msgstr "" msgid " failed - " msgstr " mislykkedes - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "pakken %s er allerede installeret" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s JA (rpmrc tilfřrer)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s JA (rpmlib tilfřrer)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "ugyldig db-fil %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s JA (db tilfřrer)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "ingen pakker\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tilfřjet til afhćngigheds-buffer.\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 #, fuzzy msgid "NO " msgstr "IKKE O.K." -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "========== gemmer tsort-relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "========== kun efterfřlgere (prćsentationsrćkkefřlge)\n" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "LŘKKE:\n" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "========== fortsćtter tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1566,46 +1566,46 @@ msgstr "kunne ikke msgid "file %s is on an unknown device\n" msgstr "fil %s er pĺ en ukendt enhed\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linie %d: %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s gemt som %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kan ikke fjerne %s - katalog ikke tomt\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "ĺbning af %s mislykkedes %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s oprettet som %s\n" @@ -2095,304 +2095,304 @@ msgid "generate signature" msgstr "generér PGP/GPG-signatur" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "pakken %s hřrer til en anden arkitektur" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "pakken %s hřrer til et andet operativsystem" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "pakken %s er allerede installeret" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "sti %s i pakke %s kan ikke omrokeres" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "filen %s skaber konflikt mellem den forsřgte installation af %s og %s" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" "filen %s fra installationen af %s skaber konflikt med fil fra pakken %s" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "pakke %s (som er nyere end %s) er allerede installeret" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "installation af pakke %s krćver %ld%cb pĺ %s-filsystemet" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "installation af pakken %s krćver %ld inode'r pĺ %s-filsystemet" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "pakke %s prćtransaktion-systemkald: %s mislykkedes: %s" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "ukendt fejl %d under arbejdet med pakken %s" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " skaber konflikt med %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " krćves af %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Datatype %d understřttes ikke\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "kan ikke oprette %s: %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "kunne ikke skrive til %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "kildepakke forventet, binćr fundet\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "kildepakke indeholder ingen .spec-fil\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "křrer postinstallations-skript (hvis det findes)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" "křrsel af smĺskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" "křrsel af smĺskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "pakke: %s-%s-%s filer test = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "bruger %s eksisterer ikke - bruger root\n" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "gruppe %s eksisterer ikke - bruger root\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "udpakning af arkiv mislykkedes%s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " for fil " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "kunne ikke ĺbne %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s mislykkedes\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "ugyldigt format: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(indeholder ingen filer)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normal " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "erstattet " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "ej installeret" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "ej delt " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(ukendt %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(ingen status)" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "pakke har hverken filejerskabs- eller id-lister\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "kunne ikke forespřrge %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "ĺbning af %s mislykkedes %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "forespřrgsel af %s mislykkedes\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "pakke med gammelt kildeformat kan ikke forespřrges\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: lćs manifest mislykkedes: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "forespřrgsel af spec-fil %s mislykkedes, kunne ikke tolkes\n" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "gruppe %s indeholder ingen pakker\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "ingen pakker udlřser %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Kunne ikke lćse %s: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ingen pakker udlřser %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "ingen pakker krćver %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "ingen pakker tilfřrer %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tilhřrer ingen pakke\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldigt pakkenummer: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "pakkens post-nummer: %u\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "post %d kunne ikke lćses\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "pakken %s er ikke installeret\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "ugyldig db-fil %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s JA (db tilfřrer)\n" @@ -2486,89 +2486,89 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "Forbereder..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "Forbereder pakker til installation..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Modtager %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... som %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "overspringer %s - overfřrsel mislykkedes - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "pakke %s kan ikke omrokeres\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "fejl ved lćsning fra filen %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "filen %s krćver en nyere version af RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s kunne ikke installeres\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "fandt %d kilde- og %d binćrpakker\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "afhćngighedskrav, der ikke kunne imřdekommes:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "installerer binćrpakker\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "kunne ikke ĺbne fil %s: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" angiver flere pakker\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "fjernelse af disse pakker ville bryde afhćngighederne:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "kunne ikke ĺbne %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Installerer %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2680,170 +2680,170 @@ msgstr "Kunne ikke msgid "cannot open Packages database in %s\n" msgstr "kunne ikke ĺbne Packages-database i %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "filen er ikke regulćr -- overspringer střrrelsestjek\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "Forventet střrrelse: %12d = indled(%d)+sign(%d)+fyld(%d)+data(%d)\n" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr " Faktisk střrrelse: %12d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Ingen signatur\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Gammel PGP-signatur\n" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammel (internt brug) signatur! Hvordan fik du fingre i den!?\n" -#: lib/signature.c:225 +#: lib/signature.c:226 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signaturstřrrelse: %d\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunne ikke udfřre %s: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "pgp fejlede\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "pgp kunne ikke skrive signatur\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP-signaturstřrrelse: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "kunne ikke lćse signaturen\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fik %d byte af PGP-signatur\n" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "gpg fejlede\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "gpg kunne ikke skrive signaturen\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstřrrelse: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fik %d byte GPG-signatur\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du skal angive \"%%_gpg_name\" i din makrofil\n" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Hovedstřrrelse er for stor" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "overspring eventuelle MD5-signaturer" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Ingen signatur\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Signaturfyld : %d\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s oversprunget grundet manglende ok-flag\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer kataloget %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "henter liste over monterede filsystemer\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "manglende %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Ikke-tilfredsstillede afhćngighedskrav for %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/de.po b/po/de.po index b524c810d..911c9f179 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -45,59 +45,59 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n" # , c-format -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." # , c-format -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s scheint kein RPM-Paket zu sein\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s scheint kein RPM-Paket zu sein\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "Fehler beim Suchen nach Paket %s\n" @@ -249,132 +249,132 @@ msgstr "Dies darf unter den Bedingungen der msgid "Usage: %s {--help}\n" msgstr "Benutzung: rpm {--help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Benutzen Sie stattdessen -e oder --erase\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "Es darf nur ein Hauptmodus angegeben werden" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "" "Nur nur eine Art der Anfrage/Überprüfung kann pro Programmlauf durchgeführt " "werden" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "nur die Installation und Aktualisierung darf erzwungen werden" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "Dateien können nur während der Paketinstallation verschoben werden" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden" -#: rpmqv.c:739 +#: rpmqv.c:743 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "Argumente zu --prefix müssen mit einem / beginnen" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb kann nur während der Paketinstallation und -deinstallation " "angegeben werden" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -383,7 +383,7 @@ msgstr "" "--justdb kann nur während der Paketinstallation und -deinstallation " "angegeben werden" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -392,7 +392,7 @@ msgstr "" "--justdb kann nur während der Paketinstallation und -deinstallation " "angegeben werden" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -401,7 +401,7 @@ msgstr "" "--nodeps darf nur während der Paketinstallation, -deinstallation und -" "überprüfung angegeben werden" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -409,7 +409,7 @@ msgstr "" "--test darf nur während der Paketinstallation, -deinstallation und -" "erstellung angegeben werden" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -417,90 +417,90 @@ msgstr "" "--root (-r) darf nur während der Paketinstallation, -deinstallation, -" "anfrage und Datenbankneuerstellungen angegeben werden" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "Argumente zu --root (-r) müssen mit einem / beginnen" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmqv.c:883 +#: rpmqv.c:887 #, fuzzy msgid "pgp not found: " msgstr "Datei auf dem Server nicht gefunden" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Das Passwort ist richtig.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign darf nur während der Paketerstellung benutzt werden" -#: rpmqv.c:923 +#: rpmqv.c:927 #, fuzzy msgid "exec failed\n" msgstr "%s: Öffnen fehlgeschlagen\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "Es wurde kein spec-Datei für die Erstellung angegeben" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "Es wurde keine tar-Datei für die Erstellung angegeben" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "Es wurden keine Pakete für die Signatur angeben" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "Es wurden keine Pakete für die Installation angegeben" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "Es wurden keine Argumente für die Anfrage angegeben" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "Es wurden keine Argumente für die Überprüfung angegeben" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "Unerwartete Argumente zu --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "Es wurden keine Argumente für die Anfrage angegeben" # , c-format -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." @@ -583,192 +583,192 @@ msgstr "" msgid "syntax error in expression\n" msgstr "? im Ausdruck erwartet" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "fehlende { nach %{" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "fehlender ':' bei %s:%d" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "fehlende { nach %{" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" # , c-format -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" # , c-format #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Verschiebungen müssen mit einem ť/Ť beginnen" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" # , c-format -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" # , c-format -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Datei auf dem Server nicht gefunden" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" # , c-format -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Verschiebungen müssen mit einem ť/Ť beginnen" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Datei auf dem Server nicht gefunden" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" # , c-format -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Konnte pgp nicht durchführen" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Konnte Signatur-Ziel (ťsigtargetŤ) nicht lesen" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "pgp fehlgeschlagen" # , c-format -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "anlegen von %s fehlgeschlagen\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" # , c-format -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "anlegen von %s fehlgeschlagen\n" # , c-format -#: build/files.c:2686 +#: build/files.c:2689 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -803,170 +803,170 @@ msgid "Could not canonicalize hostname: %s\n" msgstr "" # , c-format -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "lesen fehlgeschlagen: %s (%d)" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "lesen fehlgeschlagen: %s (%d)" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" # , c-format -#: build/pack.c:286 +#: build/pack.c:288 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: ťreadLeadŤ fehlgeschlagen\n" -#: build/pack.c:333 +#: build/pack.c:335 #, fuzzy, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "Fehler: %s scheint zu keinem RPM-Paket zu gehören\n" -#: build/pack.c:342 +#: build/pack.c:344 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "Fehler beim Eintrag %s von %s" # , c-format -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" # , c-format -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:556 +#: build/pack.c:558 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "PGP-Signatur generieren" # , c-format -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -1508,17 +1508,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/spec.c:300 +#: build/spec.c:302 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" @@ -1568,91 +1568,91 @@ msgstr "" msgid " failed - " msgstr "pgp fehlgeschlagen" -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "Paket %s ist nicht installiert\n" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" # , c-format -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "Anfrage an alle Pakete" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" # FIXME -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1704,47 +1704,47 @@ msgstr " msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -2259,315 +2259,315 @@ msgid "generate signature" msgstr "PGP-Signatur generieren" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "Paket %s ist nicht installiert\n" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "Paket %s ist nicht installiert\n" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, fuzzy, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr " steht im Konflikt mit %s-%s-%s\n" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/problems.c:285 +#: lib/problems.c:286 #, fuzzy, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " steht im Konflikt mit %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " wird von %s-%s-%s gebraucht\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "Keine Stufen ausführen" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "Ausführung des Skripts fehlgeschlagen" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "Ausführung des Skripts fehlgeschlagen" # FIXME shared, besser: "mit anderen geteilte ..." -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp fehlgeschlagen" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "Fehler beim Format %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(beinhaltet keine Dateien)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "Paket %s ist nicht installiert\n" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(unbekannter Typ)" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "Paket hat keinen Namen" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: ťreadLeadŤ fehlgeschlagen\n" -#: lib/query.c:708 +#: lib/query.c:709 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "Anfrage an alle Pakete" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "kein Paket triggert %s\n" # , c-format -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "kein Paket verlangt %s\n" # oder besser: ... listet %s auf? -ke- -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "kein Paket stellt %s bereit\n" # , c-format -#: lib/query.c:912 +#: lib/query.c:913 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/query.c:916 +#: lib/query.c:917 #, 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:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "Eintrag %d konnte nicht gelesen werden\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" # , c-format -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" @@ -2661,93 +2661,93 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "Es wurden keine Pakete für die Installation angegeben" # , c-format -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Hole %s heraus\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "Paket %s ist nicht installiert\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "Fehler: %s kann nicht installiert werden\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 #, fuzzy msgid "installing binary packages\n" msgstr "Paket installieren" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" bezeichnet mehrere Pakete\n" # oder besser: "... verletzen" ? -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Installiere %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, fuzzy, c-format msgid "rollback %d packages to %s" msgstr "Es wurden keine Pakete für die Deinstallation angegeben" @@ -2860,177 +2860,177 @@ msgstr "Datei %s kann nicht zum Lesen ge msgid "cannot open Packages database in %s\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 #, fuzzy msgid "No signature\n" msgstr "%s: Keine Signatur verfügbar\n" -#: lib/signature.c:160 +#: lib/signature.c:161 #, fuzzy msgid "Old PGP signature\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Alte Signatur (nur intern)! Wie bist du daran gekommen!?" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "pgp fehlgeschlagen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "nicht möglich, die Signatur zu lesen" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "pgp fehlgeschlagen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "alle MD5-Signaturen überspringen" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Keine Signatur verfügbar\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "fehlende { nach %{" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index cd9a195bd..b822b77bd 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,60 +1,60 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "puuttuvat riippuvuudet:\n" -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "En voi avata %s luettavaksi: %s." -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "%s:n avaus epäonnistui\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "En voi lukea %s: %s." -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "En voi lukea %s: %s." -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "en voinut avata %s: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s ei vaikuta RPM-paketilta\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ei vaikuta RPM-paketilta\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "virhe etsittäessä pakettia %s\n" @@ -203,128 +203,128 @@ msgstr "T msgid "Usage: %s {--help}\n" msgstr "käyttö: rpm {--help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Käytä sen sijaan -e tai --erase .\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "vain yksi päämoodi voidaan määritellä" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "vain asennus tai päivitys voidaan pakottaa" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "vain toinen --prefix tai --relocate voidaan antaa" -#: rpmqv.c:739 +#: rpmqv.c:743 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "--prefix parametrien pitää alkaa /-merkillä" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -332,7 +332,7 @@ msgid "" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -340,7 +340,7 @@ msgid "" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -349,7 +349,7 @@ msgstr "" "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai " "tarkistettaessa" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -357,7 +357,7 @@ msgstr "" "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja " "käännettäessä" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,89 +365,89 @@ msgstr "" "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, " "kyseltäessä ja tietokannan uudelleenluonnissa" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "parametrit --root (-r):lle alettava /-merkillä" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmqv.c:883 +#: rpmqv.c:887 #, fuzzy msgid "pgp not found: " msgstr "Tiedostoa ei löytynyt palvelimelta" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign: voidaan käyttää vain paketteja käännettäessä" -#: rpmqv.c:923 +#: rpmqv.c:927 #, fuzzy msgid "exec failed\n" msgstr "%s: avaus ei onnistunut\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "uudelleenkäännolle ei määritelty paketteja" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "käännökselle ei annettu määrittelytiedostoja" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "käännökselle ei määritelty tar-tiedostoja" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "allekirjoitukselle ei määritelty paketteja" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "asennukselle ei määritelty paketteja" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "kyselylle ei annettu parametrejä" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "tarkistukselle ei annettu parametrejä" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "--querytags: odottamattomia parametrejä" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "kyselylle ei annettu parametrejä" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "En voi avata %s luettavaksi: %s." @@ -528,180 +528,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "odotin '?'-merkkiä ilmauksessa" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "puuttuva '{' '%':n jälkeen" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "puuttuva ':', %s:%d" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "puuttuva '{' '%':n jälkeen" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "En voi lukea %s: %s." -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "En voi lukea %s: %s." -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "En voi lukea %s: %s." -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "en voinut avata %s: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "En voi lukea %s: %s." -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "En voi lukea %s: %s." -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Tiedostoa ei löytynyt palvelimelta" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "en voinut avata %s: %s" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Tiedostoa ei löytynyt palvelimelta" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "en voinut avata %s: %s" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "en voinut avata %s: %s" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "pgp epäonnistui" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "%s:n luonti epäonnistui\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "%s:n luonti epäonnistui\n" -#: build/files.c:2686 +#: build/files.c:2689 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "en voinut avata %s: %s" @@ -735,156 +735,156 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "en voinut avata %s: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "luku epäonnistui: %s (%d)" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "luku epäonnistui: %s (%d)" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:286 +#: build/pack.c:288 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "En voi lukea %s: %s." -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: build/pack.c:333 +#: build/pack.c:335 #, fuzzy, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "virhe: %s ei vaikuta RPM paketilta\n" -#: build/pack.c:342 +#: build/pack.c:344 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:556 +#: build/pack.c:558 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "generoi PGP-allekirjoitus" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -1400,17 +1400,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "virheellinen paketin numero: %s\n" -#: build/spec.c:300 +#: build/spec.c:302 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "virheellinen paketin numero: %s\n" @@ -1460,89 +1460,89 @@ msgstr "" msgid " failed - " msgstr "pgp epäonnistui" -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "en voinut avata %s: %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "kysele kaikki paketit" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1591,46 +1591,46 @@ msgstr "en voinut avata %s: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "en voinut avata %s: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "en voi poistaa %s -hakemisto ei ole tyhjä" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -2142,305 +2142,305 @@ msgid "generate signature" msgstr "generoi PGP-allekirjoitus" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "paketti %s ei ole asennettu\n" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "paketti %s ei ole asennettu\n" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, fuzzy, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr " on ristiriidassa %s-%s-%s:n kanssa\n" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, fuzzy, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " on ristiriidassa %s-%s-%s:n kanssa\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr "vaatii %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "älä suorita mitään vaiheita" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "skriptin ajo epäonnistui" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "skriptin ajo epäonnistui" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp epäonnistui" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "virhe formaatissa: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(ei tiedostoja)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "paketti %s ei ole asennettu\n" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(tuntematon tyyppi)" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paketilla ei ole nimeä" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: lib/query.c:708 +#: lib/query.c:709 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "kysele kaikki paketit" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "En voi lukea %s: %s." -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "mikään pakettie ei tarvitse %s:a\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "mikään paketti ei tarjoa %s:a\n" -#: lib/query.c:912 +#: lib/query.c:913 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "tietuetta %d ei voitu lukea\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "en voinut avata %s: %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "tiedostoa %s ei omista mikään paketti\n" @@ -2534,91 +2534,91 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "asennukselle ei määritelty paketteja" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Haen: %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "virhe: %s ei voida asentaa\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "puuttuvat riippuvuudet:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 #, fuzzy msgid "installing binary packages\n" msgstr "asenna paketti" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" määrittää useita paketteja\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Asennan: %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, fuzzy, c-format msgid "rollback %d packages to %s" msgstr "poistolle ei määritelty paketteja" @@ -2728,177 +2728,177 @@ msgstr "En voi avata %s luettavaksi: %s." msgid "cannot open Packages database in %s\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 #, fuzzy msgid "No signature\n" msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/signature.c:160 +#: lib/signature.c:161 #, fuzzy msgid "Old PGP signature\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "pgp epäonnistui" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "en voinut lukea allekirjoitusta" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "pgp epäonnistui" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ohita MD5-allekirjoitukset" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "puuttuva '{' '%':n jälkeen" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index f78b27459..b9cca0517 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,54 +14,54 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "impossible d'ouvrir: %s\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -211,146 +211,146 @@ msgstr "Peut tre redistribu librement selon les termes de la GNU GPL" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Utilisez de prfrence -e ou --erase.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "un seul type de requte/vrification peut tre effectu la fois" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "source de requte inattendue" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "source de requte inattendue" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "source de requte inattendue" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "seules l'installation et la mise jour peuvent tre forces" -#: rpmqv.c:733 +#: rpmqv.c:737 #, fuzzy msgid "files may only be relocated during package installation" msgstr "" "--replacefiles ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:736 +#: rpmqv.c:740 #, fuzzy msgid "only one of --prefix or --relocate may be used" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:739 +#: rpmqv.c:743 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--clean ne peut tre spcifi que lors de la construction d'un package" -#: rpmqv.c:742 +#: rpmqv.c:746 #, fuzzy msgid "--prefix may only be used when installing new packages" msgstr "--sign ne peut tre spcifi que lors de la construction d'un package" -#: rpmqv.c:745 +#: rpmqv.c:749 #, fuzzy msgid "arguments to --prefix must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "" "--replacefiles ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:765 +#: rpmqv.c:769 #, fuzzy msgid "--excludedocs may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:769 +#: rpmqv.c:773 #, fuzzy msgid "--includedocs may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:773 +#: rpmqv.c:777 #, fuzzy msgid "only one of --excludedocs and --includedocs may be specified" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:777 +#: rpmqv.c:781 #, fuzzy msgid "--ignorearch may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:781 +#: rpmqv.c:785 #, fuzzy msgid "--ignoreos may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:790 +#: rpmqv.c:794 #, fuzzy msgid "--allmatches may only be specified during package erasure" msgstr "" "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:794 +#: rpmqv.c:798 #, fuzzy msgid "--allfiles may only be specified during package installation" msgstr "" "--replacefiles ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:799 +#: rpmqv.c:803 #, fuzzy msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -359,7 +359,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -368,7 +368,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -377,7 +377,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:818 +#: rpmqv.c:822 #, fuzzy msgid "" "--test may only be specified during package installation, erasure, and " @@ -386,7 +386,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:823 +#: rpmqv.c:827 #, fuzzy msgid "" "--root (-r) may only be specified during installation, erasure, querying, " @@ -395,90 +395,90 @@ msgstr "" "--root (-r) ne peut tre spcifi que lors de l'installation, de la " "dsinstallation ou de l'interrogation d'un package" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:883 +#: rpmqv.c:887 #, fuzzy msgid "pgp not found: " msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "La vrification du mot de passe a chou\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Mot de passe correct.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign ne peut tre spcifi que lors de la construction d'un package" -#: rpmqv.c:923 +#: rpmqv.c:927 #, fuzzy msgid "exec failed\n" msgstr "La construction a chou.\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "aucun package n'a t spcifi pour la reconstruction" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "aucun package n'a t spcifi pour la construction" -#: rpmqv.c:1025 +#: rpmqv.c:1029 #, fuzzy msgid "no tar files given for build" msgstr "aucun package n'a t spcifi pour la construction" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "aucun argument n'a t fourni pour la requte" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "aucun argument n'a t fourni pour la vrification" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "aucun argument n'a t fourni pour la requte" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "impossible d'ouvrir: %s\n" @@ -554,180 +554,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "impossible d'ouvrir: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "La construction a chou.\n" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -761,156 +761,156 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr " --sign - genre une signature PGP" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -1434,17 +1434,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "impossible d'ouvrir: %s\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1491,86 +1491,86 @@ msgstr "" msgid " failed - " msgstr "La construction a chou.\n" -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "impossible d'ouvrir: %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "impossible d'ouvrir: %s\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1617,46 +1617,46 @@ msgstr "impossible d'ouvrir: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2180,304 +2180,304 @@ msgid "generate signature" msgstr " --sign - genre une signature PGP" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "conflicts with" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "is needed by" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "" " -f + - interroge le package qui appartient " -#: lib/psm.c:709 +#: lib/psm.c:716 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "La construction a chou.\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:759 +#: lib/query.c:760 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2569,90 +2569,90 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, fuzzy, c-format msgid "rollback %d packages to %s" msgstr "aucun package n'a t spcifi pour la dsinstallation" @@ -2762,174 +2762,174 @@ msgstr "impossible d'ouvrir: %s\n" msgid "cannot open Packages database in %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 #, fuzzy msgid "Old PGP signature\n" msgstr " --sign - genre une signature PGP" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "La construction a chou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "La construction a chou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr " --sign - genre une signature PGP" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "impossible d'ouvrir: %s\n" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/gl.po b/po/gl.po index 0ddfde815..25b7eabb1 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "" @@ -201,229 +201,229 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1047 +#: rpmqv.c:1051 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1141 +#: rpmqv.c:1145 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "" @@ -498,180 +498,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,152 +705,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:471 +#: build/pack.c:473 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:490 +#: build/pack.c:492 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:574 +#: build/pack.c:576 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1348,17 +1348,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1404,84 +1404,84 @@ msgstr "" msgid " failed - " msgstr "" -#: lib/depends.c:149 +#: lib/depends.c:152 #, c-format msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:425 +#: lib/depends.c:428 msgid "(db files)" msgstr "" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 msgid "(db package)" msgstr "" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1528,46 +1528,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2021,298 +2021,298 @@ msgid "generate signature" msgstr "" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, c-format msgid "package %s is intended for a %s architecture" msgstr "" -#: lib/problems.c:240 +#: lib/problems.c:241 #, c-format msgid "package %s is intended for a %s operating system" msgstr "" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "" -#: lib/problems.c:293 +#: lib/problems.c:294 #, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "conflicts with" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "is needed by" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:709 +#: lib/psm.c:716 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 msgid "(added files)" msgstr "" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2403,89 +2403,89 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2595,167 +2595,167 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:421 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/is.po b/po/is.po index d3c05829c..62a593186 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "gat ekki útbúiđ pakkaskilyrđi:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Get ekki opnađ spec skrána %s: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Gat ekki opnađ pípu í tar: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Gat ekki lesiđ spec skrá frá %s\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Gat ekki endurnefnt %s sem %s: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "gat ekki skođađ %s: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "Skráin %s er ekki venjuleg skrá.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Skráin %s virđist ekki vera specskrá.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Ţýđi fyrir markkerfi: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Ţýđi fyrir markkerfi %s\n" @@ -202,229 +202,229 @@ msgstr " msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1047 +#: rpmqv.c:1051 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1141 +#: rpmqv.c:1145 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Get ekki opnađ tempi skrá.\n" @@ -499,180 +499,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "vantar '(' í %s %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "vantar ')' í %s %s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ógilt %s tákn: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "vantar '(' í %s %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "Tvćr skrár á einni línu: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "Skráin er tvítekin: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "Skráin fannst ekki: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Skrá %s: %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "Gat ekki opnađ PreUn skrá: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "Skráin fannst ekki međ 'glob': %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Gat ekki opnađ %%files skrána %s: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "lína: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Ógild skrá %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Gat ekki keyrt %s: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Gat ekki búiđ til undirferli (fork) %s: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s brást\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "gat ekki ritađ öll gögn í %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "gat ekki fundiđ %s:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -706,156 +706,156 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "safnskráarsmíđ brást á skrá %s: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "safnskráarsmíđ brást: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Gat ekki opnađ PreIn skrá: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Gat ekki opnađ PreUn skrá: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Gat ekki opnađ PostIn skrá: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Gat ekki opnađ PostUn skrá: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Get ekki opnađ VerifyScript skrá: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek brást: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Get ekki lesiđ haus úr %s: %s\n" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Gat ekki ritađ haus í %s: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Gat ekki ritađ haus í %s: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Get ekki lesiđ haus úr %s: %s\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "Get ekki ritađ í pakka: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Get ekki opnađ sigtarget %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Get ekki lesiđ haus úr %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Gat ekki ritađ haus í %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Get ekki lesiđ innihald %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Get ekki ritađ innihald í %s: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Skrifađi: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1410,85 +1410,85 @@ msgstr "" msgid " failed - " msgstr "" -#: lib/depends.c:149 +#: lib/depends.c:152 #, c-format msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:425 +#: lib/depends.c:428 msgid "(db files)" msgstr "" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "uppfćra pakka" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1535,46 +1535,46 @@ msgstr "gat ekki opna msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s vistađ sem %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s brást: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s gat ekki eytt %s: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s búiđ til sem %s\n" @@ -2037,298 +2037,298 @@ msgid "generate signature" msgstr "búa til undirskrift" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, c-format msgid "package %s is intended for a %s architecture" msgstr "" -#: lib/problems.c:240 +#: lib/problems.c:241 #, c-format msgid "package %s is intended for a %s operating system" msgstr "" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "" -#: lib/problems.c:293 +#: lib/problems.c:294 #, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "conflicts with" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "is needed by" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "gat ekki búiđ til %%%s %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "get ekki ritađ í %%%s %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "pakkinn inniheldur enga .spec skrá\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "gat ekki opnađ %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s brást\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: gat ekki lesiđ manifest: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Get ekki lesiđ %s: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "gat ekki búiđ til %%%s %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 msgid "(added files)" msgstr "" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2419,89 +2419,89 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2611,167 +2611,167 @@ msgstr "Get ekki opna msgid "cannot open Packages database in %s\n" msgstr "get ekki opnađ pakka gagnagrunn í\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Gat ekki keyrt %s: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "pgp brást\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "pgp gat ekki lesiđ undirskriftina\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "get ekki lesiđ undirskriftina\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "ggp brást\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "gpg get ekki lesiđ undirskriftina\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "vantar %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Óuppfyllt pakkaskilyrđi fyrir %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index efef7221f..607687b63 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -14,54 +14,54 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: EUC-JP\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "°Í¸Ŕ­¤ÎˇçÇĄ:\n" -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "spec ĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar ĽŃĽ¤Ľ×¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "%s ¤Ť¤é spec ĽŐĽĄĽ¤Ľë¤ÎĆɤߚţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s ¤ň %s ¤Ë¤š¤ëĚžÁ°¤ÎĘŃšš¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s\n" -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "stat %s ¤ËźşÇÔ: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "ÉáÄ̤μռĄĽ¤Ľë¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤ó: %s\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ď ĽšĽÚĽĂĽŻĽŐĽĄĽ¤Ľë¤Ç¤Ď¤Ę¤¤¤č¤Ś¤Ç¤šĄŁ\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "şîŔŽĂ漿ĄźĽ˛ĽĂĽČĽ×ĽéĽĂĽČĽŐĽŠĄźĽŕ: %s\n" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "ĽżĄźĽ˛ĽĂĽČ %s ÍѤ˺îŔŽĂć\n" @@ -216,62 +216,62 @@ msgstr "GNU msgid "Usage: %s {--help}\n" msgstr "ťČÍŃËĄ: rpm {--help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "-e ¤Ť --erase ¤ňťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, fuzzy, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "°úżô˝čÍý(%d)¤Ç¤ÎĆâÉôĽ¨ĽéĄź :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "°ě¤Ä¤ÎĽáĽ¸ĽăĄźĽâĄźĽÉ¤Î¤ß¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "Ě䤤šç¤ď¤ť/¸ĄžÚ¤Ď°ěĹ٤˰ě¤Ä¤ˇ¤ŤźÂšÔ¤Ç¤­¤Ţ¤ť¤ó" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "Í˝´ü¤ť¤ĚĚ䤤šç¤ď¤ť¤ÎĽŐĽéĽ°" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "Í˝´ü¤ť¤ĚĚ䤤šç¤ď¤ť¤ÎĽŐĽŠĄźĽŢĽĂĽČ" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "Í˝´ü¤ť¤ĚĚ䤤šç¤ď¤ť¤ÎĽ˝ĄźĽš" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "ĽÇĄźĽżĽŮĄźĽš¤ňťČÍѤˇ¤Ę¤¤¤Î¤Ë --dbpath ¤ŹÍż¤¨¤é¤ě¤Ć¤¤¤Ţ¤š" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "Ľ¤ĽóĽšĽČĄźĽëĄ˘Ľ˘ĽĂĽ×Ľ°ĽěĄźĽÉĄ˘Ľ˝ĄźĽšşď˝üĄ˘ĽšĽÚĽĂĽŻĽŐĽĄĽ¤Ľëşď˝üťţ¤Î¤ßśŻŔŠ¤Ç¤­" "¤Ţ¤š" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "ĽŐĽĄĽ¤Ľë¤ĎĽŃĽĂĽąĄźĽ¸Ľ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßşĆÇŰĂ֤Ǥ­¤Ţ¤š" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ¤â¤ˇ¤Ż¤Ď --relocate ¤Î¤¤¤ş¤ě¤Ť¤Î¤ßťČÍѤǤ­¤Ţ¤š" -#: rpmqv.c:739 +#: rpmqv.c:743 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" @@ -279,82 +279,82 @@ msgstr "" "--relocate ¤Č --excludepath ¤Ďżˇ¤ˇ¤¤ĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­¤Î¤ßťČÍŃ" "¤Ç¤­¤Ţ¤š" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix ¤ĎżˇľŹ¤ËĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤Č¤­¤Î¤ßťČÍѤǤ­¤Ţ¤š" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ¤Ř¤Î°úżô¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Í¤Đ¤Ę¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ¤Č --includedocs ¤Ď¤É¤Á¤é¤Ť°ěĘý¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "-ignoreos ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "-ignoresize ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ¤ĎĽŃĽĂĽąĄźĽ¸¤Îşď˝üťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -362,13 +362,13 @@ msgid "" msgstr "" "--nodeps ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎşîŔŽĄ˘Ľ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘¸ĄžÚťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test ¤ĎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘şîŔŽťţ¤Î¤ßťŘÄę¤Ç¤­¤Ţ¤š" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -376,88 +376,88 @@ msgstr "" "--root (-r) ¤ĎĽ¤ĽóĽšĽČĄźĽëĄ˘şď˝üĄ˘Ě䤤šç¤ď¤ťĄ˘ĽÇĄźĽżĽŮĄźĽšşĆš˝ĂŰťţ¤Î¤ßťŘÄę¤Ç" "¤­¤Ţ¤š" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ¤Î°úżô¤Ď / ¤Ť¤éťĎ¤Ţ¤é¤Í¤Đ¤Ę¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "˝đĚž¤š¤ë¤ż¤á¤ÎĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤ó\n" -#: rpmqv.c:883 +#: rpmqv.c:887 #, fuzzy msgid "pgp not found: " msgstr "pgp ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "ĽŃĽšĽŐĽěĄźĽş¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "ĽŃĽšĽŐĽěĄźĽşĽÁĽ§ĽĂĽŻ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "ĽŃĽšĽŐĽěĄźĽş¤ĎŔľžď¤Ç¤šĄĽ\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤ĽëĂć¤ÎĚľ¸ú¤Ę %%_signature ĄŁ\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign ¤ĎĽŃĽĂĽąĄźĽ¸şîŔŽťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "źÂšÔźşÇÔ\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "şĆşîŔŽ¤š¤ë¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "şîŔŽ¤Î¤ż¤á¤Î spec ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "şîŔŽ(build)¤Î¤ż¤á¤Î tar ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "˝đĚž¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "Ě䤤šç¤ď¤ť¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "¸ĄžÚ¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "--querytags ¤Î°úżô¤Ź´Ö°ă¤Ă¤Ć¤¤¤Ţ¤š" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "Ě䤤šç¤ď¤ť¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "°ěťţĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó" @@ -545,180 +545,180 @@ msgstr "&& msgid "syntax error in expression\n" msgstr "ź°Ăć¤Çʸ˥Ľ¨ĽéĄź" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK źşÇÔ: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "%s %s ¤Ç '('¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "')' ¤Ź¤˘¤ę¤Ţ¤ť¤ó %s(%s " -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "Ěľ¸ú¤Ę %s ¤ÎĽČĄźĽŻĽó: %s" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "%s %s ¤Ç '('¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó" -#: build/files.c:545 +#: build/files.c:548 #, fuzzy, c-format msgid "Non-white space follows %s(): %s\n" msgstr "%s() ¤ËÂł¤ŻśőÇň¤Ź¤˘¤ę¤Ţ¤ť¤ó: %s" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "ÉÔŔľ¤Ęʸ˥: %s(%s)" -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "ÉÔŔľ¤ĘĽâĄźĽÉĽšĽÚĽĂĽŻ: %s(%s)" -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "ÉÔŔľ¤ĘĽÇĽŁĽěĽŻĽČĽęĽâĄźĽÉĽšĽÚĽĂĽŻ: %s(%s)" -#: build/files.c:756 +#: build/files.c:759 #, fuzzy, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "°Űžď¤ĘĽíĽŤĄźĽëÄš: \"%.*s\" %%lang(%s)" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "ĘŁżô¤ÎĽíĽŤĄźĽë %.*s %%lang(%s)" -#: build/files.c:924 +#: build/files.c:927 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "%%docdir ¤Î¸ÂłŚ¤ËĂŁ¤ˇ¤Ţ¤ˇ¤ż" -#: build/files.c:930 +#: build/files.c:933 #, fuzzy, c-format msgid "Only one arg for %%docdir\n" msgstr "%%docdir ¤Î°úżô¤Ď1¤Ä¤Î¤ß¤Ç¤š" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "1šÔ¤Ë2¤Ä¤ÎĽŐĽĄĽ¤Ľë: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Ď \"/\" ¤Ť¤éťĎ¤Ţ¤é¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó: %s" -#: build/files.c:986 +#: build/files.c:989 #, fuzzy, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "ž¤ÎĽŐĽŠĄźĽŕ¤ÇĆĂĘĚ¤Ę %%doc ¤ňşŽ¤ź¤ë¤ł¤Č¤Ď¤Ç¤­¤Ţ¤ť¤ó: %s" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Ź2˛óÉ˝ľ­¤ľ¤ě¤Ć¤¤¤Ţ¤š: %s" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Ď prefix (%s) ¤Č°ěĂפˇ¤Ţ¤ť¤ó: %s" -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó: %s" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "ÉÔŔľ¤Ę˝ęÍ­źÔ/Ľ°ĽëĄźĽ×: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "ĽŐĽĄĽ¤Ľë %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤ĎŔčĆŹ¤Ë \"/\" ¤ŹÉŹÍפǤš: %s" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "%d šÔĚÜ: ĽĐĄźĽ¸ĽçĽó¤Ďľö˛Ä¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó(by glob): %s" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "%%files ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó: %s" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "šÔĚÜ: %s" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "%s ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "%s ¤ň fork ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s źşÇÔ" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "Á´¤Ć¤ÎĽÇĄźĽż¤ň %s ¤Ë˝ń¤Ż¤ł¤Č¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: build/files.c:2521 +#: build/files.c:2524 #, fuzzy, c-format msgid "Finding %s: (using %s)...\n" msgstr "%s ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š: (%s ¤ňťČÍѤˇ¤Ć¤¤¤Ţ¤š)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "%s ¤ň¸Ť¤Ä¤ą¤ë¤Î¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż:" -#: build/files.c:2686 +#: build/files.c:2689 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Î˝čÍýĂć: %s-%s-%s\n" @@ -752,157 +752,157 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "ĽŰĽšĽČĚž¤ňŔľź°¤Ę¤â¤Î¤Ë¤Ç¤­¤Ţ¤ť¤ó: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÇĽ˘ĄźĽŤĽ¤ĽÖ¤ÎşîŔŽ¤ËźşÇÔ: %s" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÇĽ˘ĄźĽŤĽ¤ĽÖ¤ÎşîŔŽ¤ËźşÇÔ: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy ¤Ç˝ń¤­šţ¤ßźşÇÔ: %s" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy ¤ÇĆɤߚţ¤ßźşÇÔ: %s" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "PreIn ĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "PreUn ĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "PostIn ĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "PostUn ĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "VerifyScript ĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "ĽČĽęĽŹĄźĽšĽŻĽęĽ×ĽČĽŐĽĄĽ¤Ľë¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:286 +#: build/pack.c:288 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: %s ¤ÎĽŞĄźĽ×Ľó: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: %s ¤ÎĆɤߚţ¤ß: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fread ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, fuzzy, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s ¤Ď RPM ĽŃĽĂĽąĄźĽ¸¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤ó\n" -#: build/pack.c:342 +#: build/pack.c:344 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: %s ¤Ť¤é¤ÎĽŘĽĂĽŔ¤ÎĆɤߚţ¤ß\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s" -#: build/pack.c:500 +#: build/pack.c:502 #, fuzzy msgid "Bad CSA data\n" msgstr "ÉÔŔľ¤Ę CSA ĽÇĄźĽż" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "˝đĚž¤ÎŔ¸ŔŽĂć: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s" -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "sigtarget ¤ÎĆɤߚţ¤ß¤Ź¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "˝ń¤­šţ¤ßĂć: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Î ˝ĐÎĎĽŐĽĄĽ¤ĽëĚž¤ňŔ¸ŔŽ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "%s ¤ňşîŔŽ¤Ç¤­¤Ţ¤ť¤ó: %s\n" @@ -1423,17 +1423,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "ĽšĽÚĽĂĽŻĽŐĽĄĽ¤ĽëĽŤĽżĽíĽ°Ăć¤Î I18N ʸťúÎó¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "%d šÔĚÜ: ÉÔŔľ¤ĘČÖšć: %s" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "%d šÔĚÜ: ÉÔŔľ¤Ę no%s ČÖšć: %d" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "%d šÔĚÜ: ÉÔŔľ¤Ę %s ČÖšć: %s\n" @@ -1483,89 +1483,89 @@ msgstr "" msgid " failed - " msgstr "źşÇÔ - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤Ď¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤š" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %s ¤Ď rpmrc ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %s ¤Ď rpmrc ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "ÉÔŔľ¤ĘĽŐĽĄĽ¤Ľë¤ÎžőÂÖ: %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %s ¤Ď db ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "%d ¸Ä¤ÎĽŃĽĂĽąĄźĽ¸¤ň¸Ť¤Ä¤ą¤Ţ¤ˇ¤ż\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: %s ¤ĎĽŃĽĂĽąĄźĽ¸¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "group Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1614,46 +1614,46 @@ msgstr "%s msgid "file %s is on an unknown device\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ĎÉÔĚŔ¤ĘĽÇĽĐĽ¤Ľš¤Ç¤š" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%d šÔĚÜ: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆĘݸ¤ľ¤ě¤Ţ¤š" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ¤ňşď˝ü¤Ç¤­¤Ţ¤ť¤ó - ĽÇĽŁĽěĽŻĽČĽę¤Źśő¤Ç¤˘¤ę¤Ţ¤ť¤ó" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ¤Î rmdir ¤ËźşÇÔ: %s" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆşîŔŽ¤ľ¤ě¤Ţ¤š" @@ -2176,315 +2176,315 @@ msgid "generate signature" msgstr "PGP/GPG ˝đĚž¤ňŔ¸ŔŽ¤ˇ¤Ţ¤š" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤Ď°Ű¤Ę¤ëĽ˘ĄźĽ­ĽĆĽŻĽÁĽă¸ţ¤ą¤Ç¤š" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤Ď°Ű¤Ę¤ë OS ¸ţ¤ą¤Ç¤š" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤Ď¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤š" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ĎşĆÇŰĂ֤Ǥ­¤Ţ¤ť¤ó" -#: lib/problems.c:255 +#: lib/problems.c:256 #, fuzzy, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" "ĽŐĽĄĽ¤Ľë %s ¤Ď %s-%s-%s ¤Č %s-%s-%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÎĽŐĽĄĽ¤Ľë¤ČśĽšç¤ˇ¤Ć¤¤¤Ţ¤š" -#: lib/problems.c:260 +#: lib/problems.c:261 #, fuzzy, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" "%s-%s-%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ť¤é¤ÎĽŐĽĄĽ¤Ľë %s ¤ĎĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤Ť¤é¤ÎĽŐĽĄĽ¤Ľë" "¤ČśĽšç¤ˇ¤Ć¤¤¤Ţ¤š" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s (%s-%s-%s¤č¤ę¤âżˇ¤ˇ¤¤¤â¤Î) ¤Ď¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ" "¤š" -#: lib/problems.c:270 +#: lib/problems.c:271 #, fuzzy, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ď %ld%cb ¤ŹÉŹÍפǤš(%s ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕžĺ" "¤Ç)" -#: lib/problems.c:280 +#: lib/problems.c:281 #, fuzzy, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¤Ď %ld%cb ¤ŹÉŹÍפǤš(%s ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕžĺ" "¤Ç)" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, fuzzy, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "ÉÔĚŔ¤ĘĽ¨ĽéĄź %d ¤ŹĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤ÎÁŕşîĂć¤Ë¤Ş¤­¤Ţ¤ˇ¤ż" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " %s-%s-%s ¤ČśĽšç¤ˇ¤Ţ¤š\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr "¤Ď %s-%s-%s ¤ËÉŹÍפȤľ¤ě¤Ć¤¤¤Ţ¤š\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "ĽÇĄźĽżĽżĽ¤Ľ× %d ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "%s ¤ňşîŔŽ¤Ç¤­¤Ţ¤ť¤ó: %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "%s ¤Ř˝ń¤­šţ¤á¤Ţ¤ť¤ó" -#: lib/psm.c:483 +#: lib/psm.c:481 #, fuzzy msgid "source package expected, binary found\n" msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ź´üÂÔ¤ľ¤ě¤Ţ¤šĄ˘ĽĐĽ¤ĽĘĽę¤Ď¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ď .spec ĽŐĽĄĽ¤Ľë¤ň´Ţ¤ó¤Ç¤¤¤Ţ¤ť¤ó" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "ĽÝĽšĽČĽ¤ĽóĽšĽČĄźĽëĽšĽŻĽęĽ×ĽČ(¤ŹÍ­¤ě¤Đ)¤ňźÂšÔ¤ˇ¤Ţ¤š\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "ĽšĽŻĽęĽ×ĽČ¤ÎźÂšÔ¤ËźşÇÔ" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "ĽšĽŻĽęĽ×ĽČ¤ÎźÂšÔ¤ËźşÇÔ" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "ĽŃĽĂĽąĄźĽ¸: %s-%s-%s ĽŐĽĄĽ¤ĽëĽĆĽšĽČ = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "ĽćĄźĽś %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "Ľ°ĽëĄźĽ× %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĽ˘ĄźĽŤĽ¤ĽÖ¤Îż­Äš¤ËźşÇÔ %s%s: %s" -#: lib/psm.c:1538 +#: lib/psm.c:1545 #, fuzzy msgid " on file " msgstr "ĽŐĽĄĽ¤Ľëžĺ" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s źşÇÔ" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "ĽŐĽŠĄźĽŢĽĂĽČĂć¤ÎĽ¨ĽéĄź: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "ĽŐĽĄĽ¤Ľë¤ň´Ţ¤ó¤Ç¤¤¤Ţ¤ť¤ó" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "ÄĚžď" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "ĂÖ¤­´š¤¨¤é¤ě¤Ć¤¤¤Ţ¤š" -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "ĽÍĽĂĽČśŚÍ­" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(̤ĂΤΠ%3d)" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(˛ż¤ÎžőÂ֤⤢¤ę¤Ţ¤ť¤ó)" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤ĎĽŐĽĄĽ¤Ľë˝ęÍ­źÔ¤ä id ĽęĽšĽČ¤ň¤É¤Á¤é¤âťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "%s ¤ňşď˝ü(unlink)¤Ç¤­¤Ţ¤ť¤ó: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "%s ¤Ř¤ÎĚ䤤šç¤ď¤ť¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "ľěˇÁź°¤ÎĽ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤ë¤ł¤Č¤Ď¤Ç¤­¤Ţ¤ť¤ó\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: Fread ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "ĽšĽÚĽĂĽŻĽŐĽĄĽ¤Ľë %s ¤Ř¤ÎĚ䤤šç¤ď¤ť¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄ˘ĽŃĄźĽš¤Ç¤­¤Ţ¤ť¤ó\n" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "%d ¸Ä¤ÎĽŃĽĂĽąĄźĽ¸¤ň¸Ť¤Ä¤ą¤Ţ¤ˇ¤ż\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "Ľ°ĽëĄźĽ× %s ¤Ë°¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "%s ¤ňĽČĽęĽŹĄź¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s ¤ňĆɤŕ¤Î¤ËźşÇÔ: $sĄŁ" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s ¤ňĽČĽęĽŹĄź¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "%s ¤ňÉŹÍפȤš¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "%s ¤ňÄ󜥤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ď¤É¤ÎĽŃĽĂĽąĄźĽ¸¤Ë¤â°¤ˇ¤Ć¤¤¤Ţ¤ť¤ó\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "Ěľ¸ú¤ĘĽŃĽĂĽąĄźĽ¸ČÖšć: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "ĽŃĽĂĽąĄźĽ¸ĽěĽłĄźĽÉČÖšć %d\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "ĽěĽłĄźĽÉ %d ¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ĎĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "ÉÔŔľ¤ĘĽŐĽĄĽ¤Ľë¤ÎžőÂÖ: %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %s ¤Ď db ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" @@ -2580,90 +2580,90 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "%s ¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "%s ¤Č¤ˇ¤Ć...\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s ¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š - ĹžÁ÷źşÇÔ - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ĎşĆÇŰĂ֤Ǥ­¤Ţ¤ť¤ó" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ť¤é¤ÎĆɤߚţ¤ßĽ¨ĽéĄź " -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ë¤Ď¤č¤ężˇ¤ˇ¤¤ RPM ¤ÎĽĐĄźĽ¸ĽçĽó¤ŹÉŹÍפǤš\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "%s ¤ňĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤ó\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "%d ¸Ä¤ÎĽ˝ĄźĽš¤Č %d ¸Ä¤ÎĽĐĽ¤ĽĘĽęĽŃĽĂĽąĄźĽ¸¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "°Í¸Ŕ­¤ÎˇçÇĄ:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "ĽĐĽ¤ĽĘĽęĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽëĂć\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó: %s" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ¤ĎĘŁżô¤ÎĽŃĽĂĽąĄźĽ¸¤ňťŘÄꤡ¤Ć¤¤¤Ţ¤š\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "¤ł¤ě¤é¤ÎĽŃĽĂĽąĄźĽ¸¤ňşď˝ü¤š¤ë¤Č°Í¸Ŕ­¤ňÇ˲ő¤ˇ¤Ţ¤š:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "%s ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "%s ¤ňĽ¤ĽóĽšĽČĄźĽëĂć\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2773,177 +2773,177 @@ msgstr " msgid "cannot open Packages database in %s\n" msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" "ĽŐĽĄĽ¤Ľë¤Ď°ěČ̤μռĄĽ¤Ľë¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤ó -- ĽľĽ¤ĽşĽÁĽ§ĽĂĽŻ¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "˝đĚžĽľĽ¤Ľş: %d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "˝đĚž¤Ď¤˘¤ę¤Ţ¤ť¤ó\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "¸Ĺ¤¤ PGP ˝đĚž\n" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "¸Ĺ¤¤(ĆâÉô¤Ŕ¤ą¤Î)˝đĚž! ¤É¤Ś¤ä¤Ă¤Ć¤˝¤ě¤ňźę¤Ë¤¤¤ě¤Ţ¤ˇ¤ż¤Ť!?" -#: lib/signature.c:225 +#: lib/signature.c:226 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "˝đĚžĽľĽ¤Ľş: %d\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż: %s" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "pgp źşÇÔ" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ¤Ź˝đĚž¤ň˝ń¤­šţ¤ŕ¤Î¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ˝đĚžĽľĽ¤Ľş: %s\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "˝đĚž¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "PGP ˝đĚž¤Î %d ĽĐĽ¤ĽČ¤ňźčĆŔ\n" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "gpg źşÇÔ" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg ¤Ź˝đĚž¤ň˝ń¤­šţ¤ŕ¤Î¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: lib/signature.c:430 +#: lib/signature.c:431 #, fuzzy, c-format msgid "GPG sig size: %d\n" msgstr "GPG ˝đĚžĽľĽ¤Ľş: %s\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, fuzzy, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG ˝đĚž¤Î %d ĽĐĽ¤ĽČ¤ňźčĆŔ\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤ĽëĂć¤ÎĚľ¸ú¤Ę %%_signature ĄŁ\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤Ľë¤Ë \"%%_pgp_name\" ¤ňŔßÄꤡ¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤Ľë¤Ë \"%%_pgp_name\" ¤ňŔßÄꤡ¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "ĽŘĽĂĽŔĽľĽ¤Ľş¤ŹÂ礭¤š¤Ž¤Ţ¤š" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "MD5 ˝đĚž¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "˝đĚž¤Ď¤˘¤ę¤Ţ¤ť¤ó\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "˝đĚžĽŃĽĂĽÉ: %d\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ď missingok ĽŐĽéĽ°¤Î¤ż¤áĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤Î˝üł°: %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "ĽŢĽŚĽóĽČ¤ľ¤ě¤żĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ÎĽęĽšĽČ¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "%s ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s ¤Î¤ż¤á¤Î°Í¸Ŕ­¤ňËţ¤ż¤ˇ¤Ć¤¤¤Ţ¤ť¤ó:" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/ko.po b/po/ko.po index 75f79c69f..3429f8223 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-09-07 22:03+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=EUC-KR\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "ŔÇÁ¸źş šŽÁŚˇÎ ÁŚŔŰżĄ ˝ÇĆĐÇÔ:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "%s spec ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar ĆÄŔĚÇÁ¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "%s żĄź­ spec ĆÄŔĎŔť ŔĐ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s żĄź­ %s (Ŕ¸)ˇÎ Ŕ̸§ şŻ°ćÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "%s ŔÇ ťóĹÂ(stat)¸Ś ÇĽ˝ĂÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "%s ĆÄŔĎŔş Á¤ąÔ(regular) ĆÄŔĎŔĚ žĆ´Ő´Ď´Ů.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ĆÄŔĎŔş spec ĆÄŔĎŔĚ žĆ´Ń °Í °°˝Ŕ´Ď´Ů.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "¸ńÇĽ´ëťó(target) Çá§ĆűŔ¸ˇÎ ÁŚŔŰ Áß: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "%s (Ŕť)¸Ś ÁŚŔŰÇĎ°í ŔÖ˝Ŕ´Ď´Ů\n" @@ -203,135 +203,135 @@ msgstr " msgid "Usage: %s {--help}\n" msgstr " ťçżëšý: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "--rcfile żÉźÇŔĚ ÁŚ°ĹľÇžú˝Ŕ´Ď´Ů.\n" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "´ë˝Ĺ \"--macros <ĆÄŔĎ:..>\" Ŕť ťçżëÇŐ´Ď´Ů.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "(%d) ŔÇ ŔÎźö Ăł¸Ž °úÁ¤ Áß łťşÎ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "ÇĎłŞŔÇ ÁÖżä(major) ¸đľĺ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "ÁúŔÇ/°ËÁő ÁßżĄź­ ÇŃ°ĄÁö ŔŻÇüŔş ľż˝ĂżĄ źöÇŕľÉ źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "şÎŔűŔýÇŃ ÁúŔÇ ÇáĄą× ŔÔ´Ď´Ů" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "şÎŔűŔýÇŃ ÁúŔÇ Çü˝Ä ŔÔ´Ď´Ů" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "şÎŔűŔýÇŃ ÁúŔÇ źŇ˝ş ŔÔ´Ď´Ů" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath ´Â ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ťçżëÇĎÁö žĘąâ Ŕ§ÇŃ żÉźÇŔÔ´Ď´Ů" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "źłÄĄ, ž÷ą×ˇšŔĚľĺ, źŇ˝ş ťčÁŚ, spec ĆÄŔĎ ťčÁŚ˝ĂżĄ¸¸ źöÇŕľË´Ď´Ů" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ĆÄŔĎŔť ŔçščÄĄÇŇ źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix śÇ´Â --relocate żÉźÇ Áß ÇĎłŞ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate żÍ --excludepath żÉźÇŔş ĂÖ˝ĹŔÇ ĆĐĹ°Áö¸Ś źłÄĄÇŇ ś§żĄ¸¸ ťçżëÇĎ˝Ç źö " "ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix żÉźÇŔş ĂÖ˝ĹŔÇ ĆĐĹ°Áö¸Ś źłÄĄÇŇ ś§żĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "--prefix żÉźÇŔÇ ŔÎźö´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔ۾Ǟîžß ÇŐ´Ď´Ů" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs żÍ --includedocs żÉźÇ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches żÉźÇŔş ĆĐĹ°Áö ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "˝şĹŠ¸łĆŽ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "ĆŽ¸Ž°Ĺ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -339,13 +339,13 @@ msgstr "" "--nodeps żÉźÇŔş ĆĐĹ°Áö ÁŚŔŰ, ŔçÁŚŔŰ(rebuild), ŔçÄÄĆÄŔĎ(recompile), źłÄĄ, ťč" "ÁŚ, °ËÁő˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, ÁŚŔ۽ÿĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -353,87 +353,87 @@ msgstr "" "--root (-r) żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, ÁúŔÇ, ľĽŔĚĹÍşŁŔĚ˝ş Ŕ繸Ăŕ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ" "˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) żÉźÇŔÇ ŔÎźö´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔ۾Ǟîžß ÇŐ´Ď´Ů" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "ź­¸íÇŇ ĆÄŔĎŔĚ žř˝Ŕ´Ď´Ů\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "%s ĆÄŔĎżĄ Á˘ąŮÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp¸Ś ĂŁŔť źö žřŔ˝: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "ĆĐ˝ş ą¸šŽ(pass phrase) ŔÔˇÂ: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "ĆĐ˝ş ą¸šŽ(pass phrase) °ËťçżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "ĆĐ˝ş ą¸šŽ(pass phrase)ŔĚ żĂšŮ¸¨´Ď´Ů.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ şÎŔűÇŐÇŃ %%_signatureŔÇ łťżëŔĚ ŔÖ˝Ŕ´Ď´Ů.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign żÉźÇŔş ĆĐĹ°Áö ÁŚŔ۽ÿĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "ŔçÁŚŔŰ(rebuild)ÇŇ ĆĐĹ°Áö ĆÄŔĎŔť ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ÇĘżäÇŃ spec ĆÄŔĎŔť ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ÇĘżäÇŃ tar ĆÄŔĎŔť ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "ź­¸íÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "źłÄĄÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "ÁúŔÇżĄ ÇĘżäÇŃ ŔÎźö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "°ËÁőżĄ ÇĘżäÇŃ ŔÎźö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "--querytags żÉźÇżĄ şÎŔűŔýÇŃ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "ÁúŔÇżĄ ÇĘżäÇŃ ŔÎźö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Ŕӽà ĆÄŔĎŔť ż­ źö žř˝Ŕ´Ď´Ů.\n" @@ -511,180 +511,180 @@ msgstr "'&&' msgid "syntax error in expression\n" msgstr "ÇĽÇö˝ÄżĄź­ ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK ˝ÇĆĐ: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "%s %s żĄź­ '(' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "%s(%s żĄź­ ')' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "şÎŔűÇŐÇŃ %s ĹäĹŤ: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "%2$s %3$s żĄź­ %1$s (Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "%s() ´ŮŔ˝żĄ °řšéŔĚ žřŔ˝: %s\n" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Ŕ߸řľČ ą¸šŽ: %s(%s)\n" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Ŕ߸řľČ ¸đľĺ spec: %s(%s)\n" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Ŕ߸řľČ dir¸đľĺ spec: %s(%s)\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "şńÁ¤ťóŔűŔÎ ˇÎÄÉŔĎŔÇ ąćŔĚ: %%lang(%2$s) ŔÇ \"%1$.*s\"\n" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "%%lang(%2$s) żĄ ÁßşšľČ ˇÎÄÉŔĎ %1$.*s (ŔĚ)°Ą Á¸ŔçÇŐ´Ď´Ů\n" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "%%docdirŔĚ ÇѰ迥 Ŕ̸Łˇś˝Ŕ´Ď´Ů\n" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "%%docdirżĄ´Â ÇĎłŞŔÇ ŔÎźö¸¸ ÁöÁ¤ľÉ źö ŔÖ˝Ŕ´Ď´Ů\n" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "ÇĎłŞŔÇ ÁŮżĄ ľÎ°łŔÇ ĆÄŔĎŔĚ Á¸ŔçÇÔ: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "ĆÄŔĎŔş šÝľĺ˝Ă \"/\" ˇÎ ˝ĂŔŰÇŘžßÇÔ: %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "ĆŻÁ¤ %%docŔť ´Ů¸Ľ Çü˝Ä°ú ÇÔ˛˛ ťçżëÇŇ źö žřŔ˝: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "ĆÄŔĎ ¸ńˇĎŔĚ ÁßşšľĘ: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "BuildRootżĄ ˝Éşź¸Ż¸ľĹŠÇÔ: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "ĆÄŔĎŔĚ prefix (%s) (żÍ)°ú ŔĎÄĄÇĎÁö žĘŔ˝: %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "ĆÄŔĎŔť ĂŁŔť źö žřŔ˝: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Ŕ߸řľČ źŇŔŻŔÚ/ą×ˇě: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "ĆÄŔĎ %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "ĆÄŔĎŔş \"/\" ˇÎ ˝ĂŔŰÇŘžßÇÔ: %s\n" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "GlobŔť ťçżëÇŇ źö žřŔ˝: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "globŔ¸ˇÎ ĆÄŔĎŔť ĂŁŔť źö žřŔ˝: %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "%s ĆÄŔĎŔÇ %%files¸Ś ż­ źö žřŔ˝: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "ÁŮ(line): %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Ŕ߸řľČ ĆÄŔĎ: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "%s (Ŕť)¸Ś ˝ÇÇŕÇŇ źö žřŔ˝: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "%s (Ŕť)¸Ś fork ÇŇ źö žřŔ˝: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s (ŔĚ)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "%s żĄ ¸đľç ŔڡḌ ąâˇĎÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "%s (Ŕť)¸Ś ĂŁ´Â Áß: (%s ťçżë)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "%s (Ŕť)¸Ś ĂŁ´ÂľĽ ˝ÇĆĐÇÔ:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "ĆÄŔĎ Ăł¸Ž Áß: %s-%s-%s\n" @@ -718,152 +718,152 @@ msgstr " msgid "Could not canonicalize hostname: %s\n" msgstr "ČŁ˝şĆŽ ¸íŔť Á¤ąÔČ­(canonicalize) ÇŇ źö žřŔ˝: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "%s ĆÄŔĎżĄ žĆÄŤŔ̺긌 ťýźşÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "žĆÄŤŔĚşę ťýźşżĄ ˝ÇĆĐÇÔ: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy ŔŰźşżĄ ˝ÇĆĐÇÔ: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy Ŕй⿥ ˝ÇĆĐÇÔ: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "PreIn ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "PreUn ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "PostIn ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "PostUn ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "VerifyScript ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "ĆŽ¸Ž°Ĺ ˝şĹŠ¸łĆŽ ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "RPM ŔĐąâ(readRPM): %s (Ŕť)¸Ś żą´Ď´Ů: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "RPM ŔĐąâ(readRPM): %s (Ŕť)¸Ś ŔĐ˝Ŕ´Ď´Ů: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: FseekżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "RPM ŔĐąâ(readRPM): %s (Ŕş)´Â RPM ĆĐĹ°Áö°Ą žĆ´Ő´Ď´Ů\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "RPM ŔĐąâ(readRPM): %s żĄź­ Çě´ő¸Ś ŔĐ°í ŔÖ˝Ŕ´Ď´Ů\n" -#: build/pack.c:471 +#: build/pack.c:473 msgid "Unable to create immutable header region.\n" msgstr "°íÁ¤ Çě´ő żľżŞ(immutable header region)Ŕť ťýźşÇŇ źö žř˝Ŕ´Ď´Ů.\n" -#: build/pack.c:490 +#: build/pack.c:492 msgid "Unable to write temp header\n" msgstr "ŔÓ˝Ă(temp) Çě´ő¸Ś ŔŰźşÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "Ŕ߸řľČ CSA ľĽŔĚĹÍ\n" -#: build/pack.c:536 +#: build/pack.c:538 msgid "Unable to write final header\n" msgstr "¸śÁö¸ˇ(final) Çě´ő¸Ś ŔŰźşÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "ź­¸í ťýźş Áß: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 msgid "Unable to reload signature header.\n" msgstr "ź­¸í(signature) Çě´ő¸Ś ´Ů˝Ă ŔĐžîżĂ źö žř˝Ŕ´Ď´Ů.\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "%s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "ĆĐĹ°Áö¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "ź­¸íÇŇ ´ëťó %s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "%s ŔÇ Çě´ő¸Ś ŔĐŔť źö žřŔ˝: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "%s żĄ Çě´ő¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "%s ŔÇ payload¸Ś ŔĐŔť źö žřŔ˝: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "%s żĄ payload¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "ŔŰźş: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "%s ĆĐĹ°ÁöŔÇ ĂâˇÂ ĆÄŔϸíŔť ťýźşÇŇ źö žřŔ˝: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "%s (Ŕť)¸Ś ťýźşÇŇ źö žřŔ˝: %s\n" @@ -1368,17 +1368,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "specĆÄŔĎ ¸ńˇĎ(catalog)żĄź­ i18N šŽŔÚż­Ŕť ĂŁ˝Ŕ´Ď´Ů" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "%d šř° ÁŮ: Ŕ߸řľČ źýŔÚŔÔ´Ď´Ů: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "%d šř° ÁŮ: Ŕ߸řľČ no%s źýŔÚŔÔ´Ď´Ů: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "%d šř° ÁŮ: Ŕ߸řľČ %s źýŔÚŔÔ´Ď´Ů: %s\n" @@ -1424,70 +1424,70 @@ msgstr " msgid " failed - " msgstr " ˝ÇĆĐÇÔ - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "%s ĆĐĹ°Áö´Â ŔĚšĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ď´Ů" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s żš (rpmrcŔĚ ÁŚ°řÇÔ)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s żš (rpmlibŔĚ ÁŚ°řÇÔ)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s żš (db°Ą ÁŚ°řÇÔ)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) ŔÇÁ¸(Depends) Äł˝ĂżĄ Ăß°ĄľÇžú˝Ŕ´Ď´Ů.\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "žĆ´ĎżŔ" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "żš" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "tsort °ü°čżĄź­ %s-%s-%s \"%s\" (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "========== tsort °ü°č¸Ś ąâˇĎ(record)ÇŐ´Ď´Ů\n" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1495,20 +1495,20 @@ msgid "" msgstr "" "========== ĆĐĹ°Áö¸Ś tsort ÇŐ´Ď´Ů (źřź­, #źąŔÓŔÚ, #ČÄŔÓŔÚ, ąíŔĚ[depth])\n" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "========== ČÄŔÓŔÚ [successors only] (ÇĽÇö źř)\n" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "ˇçÇÁ(LOOP):\n" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "========== tsort¸Ś ÁřÇŕÇŐ´Ď´Ů...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1557,47 +1557,47 @@ msgstr "%s ( msgid "file %s is on an unknown device\n" msgstr "%s ĆÄŔĎŔĚ žË źö žř´Â ŔĺÄĄ ťóżĄ Á¸ŔçÇŐ´Ď´Ů\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= ĆĐĹ°ÁöżĄ ľđˇşĹ与°Ą Ć÷ÇԾǞî ŔÖÁö žĘŔ˝:\n" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%04o Çă°ĄąÇ(perms)ŔÇ %s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "Çě´ő ĆÄŔĎ ¸ńˇĎżĄź­ žĆÄŤŔĚşę ĆÄŔĎ %s (Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s (ŔĚ)°Ą %s (Ŕ¸)ˇÎ ŔúŔĺľÇžú˝Ŕ´Ď´Ů\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s %s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: şó ľđˇşĹ与°Ą žĆ´Ő´Ď´Ů\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s %s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s %s ¸ľĹŠ¸Ś ÇŘÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s (ŔĚ)°Ą %s (Ŕ¸)ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů\n" @@ -2074,313 +2074,313 @@ msgid "generate signature" msgstr "ź­¸íŔť ŔŰźşÇŐ´Ď´Ů" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "%s (Ŕş)´Â ´Ů¸Ľ žĆĹ°ĹŘĂĸŚ Ŕ§ÇŃ ĆĐĹ°ÁöŔÔ´Ď´Ů" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "%s (Ŕş)´Â ´Ů¸Ľ żîżľĂźÁŚ¸Ś Ŕ§ÇŃ ĆĐĹ°ÁöŔÔ´Ď´Ů" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "%s ĆĐĹ°Áö´Â ŔĚšĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ď´Ů" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "%2$s ĆĐĹ°Áö žČŔÇ %1$s °ćˇÎ´Â ŔçščÄĄÇŇ źö žř˝Ŕ´Ď´Ů" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "%2$s (żÍ)°ú %3$s ŔÇ źłÄĄ °úÁ¤żĄź­ %1$s ĆÄŔĎŔĚ ź­ˇÎ ĂćľšÇŐ´Ď´Ů" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "%2$s żĄź­ źłÄĄľÇ´Â %1$s ĆÄŔĎŔş %3$s ĆĐĹ°ÁöŔÇ ĆÄŔĎ°ú ĂćľšÇŐ´Ď´Ů" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "%s ĆĐĹ°Áö (%s ş¸´Ů ĂÖ˝ĹŔÇ ĆĐĹ°Áö)´Â ŔĚšĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ď´Ů" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" "%4$s ĆÄŔϽýşĹŰ ťóżĄź­ %1$s ĆĐĹ°Áö¸Ś źłÄĄÇŇ °ćżěżĄ´Â %2$ld%3$cb (ŔĚ)°Ą ÇĘżäÇŐ" "´Ď´Ů" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" "%3$s ĆÄŔϽýşĹŰ ťóżĄź­ %1$s ĆĐĹ°Áö¸Ś źłÄĄÇŇ °ćżěżĄ´Â %2$ld ŔÇ žĆŔĚłëľĺ(inode)" "°Ą ÇĘżäÇŐ´Ď´Ů" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" "%s ĆĐĹ°ÁöŔÇ źą(pre)-ĆŽˇŁŔčźÇ ˝Ă˝şĹŰÄÝ(syscall): %s (ŔĚ)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" "%2$s ĆĐĹ°Áö¸Ś Ăł¸ŽÇĎ´Â °úÁ¤żĄź­ žË źö žř´Â żŔˇů %1$d (ŔĚ)°Ą šßťýÇß˝Ŕ´Ď´Ů" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " %s-%s-%s (żÍ)°ú ĂćľšÇŐ´Ď´Ů\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " (Ŕş)´Â %s-%s-%s żĄź­ ÇĘżäˇÎ ÇŐ´Ď´Ů\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "%d ľĽŔĚĹÍ ŔŻÇüŔş ťçżëÇĎ˝Ç źö žř˝Ŕ´Ď´Ů\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "%%%s %s (Ŕť)¸Ś ťýźşÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "%%%s %s (Ŕť)¸Ś ŔŰźşÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "źŇ˝ş ĆĐĹ°Áö°Ą żäą¸ľË´Ď´Ů, šŮŔ̳ʸŽ¸Ś ĂŁžŇ˝Ŕ´Ď´Ů\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "źŇ˝ş ĆĐĹ°ÁöżĄ .spec ĆÄŔĎŔĚ Ć÷ÇԾǞî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: %s ˝şĹŠ¸łĆŽ¸Ś ˝ÇÇŕÇŐ´Ď´Ů (ŔÖŔť °ćżě)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" "%2$s-%3$s-%4$s ŔÇ %1$s ˝şĹŠ¸łĆŽ¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, waitpid°Ą %" "5$s (Ŕť)¸Ś šÝČŻÇĎż´˝Ŕ´Ď´Ů \n" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" "%2$s-%3$s-%4$s ŔÇ %1$s ˝şĹŠ¸łĆŽ¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, Ážˇá ťóȲ %" "5$d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s (ŔĚ)°Ą %d ŔÇ ĆÄŔĎŔť °Ž°í ŔÖ˝Ŕ´Ď´Ů, Ĺ×˝şĆŽ = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" "%s: %s ˝şĹŠ¸łĆŽ¸´(scriptlet)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s (Ŕť)¸Ś ťýˇŤÇŐ´Ď" "´Ů\n" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "%s ťçżëŔÚ°Ą Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů - root¸Ś ŔĚżëÇŐ´Ď´Ů\n" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "%s ą×ˇěŔĚ Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů - root¸Ś ŔĚżëÇŐ´Ď´Ů\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "žĆÄŤŔ̺긌 ÇŞ´ÂľĽ ˝ÇĆĐÇÔ%s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " ´ŮŔ˝ ĆÄŔĎżĄ " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%2$s ĆÄŔĎŔÇ %1$s (ŔĚ)°Ą ˝ÇĆĐÇÔ: %3$s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, c-format msgid "%s failed: %s\n" msgstr "%s (ŔĚ)°Ą ˝ÇĆĐÇÔ: %s\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "żĂšŮ¸ŁÁö ¸řÇŃ Çü˝Ä: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(ĆÄŔĎŔĚ Ć÷ÇԾǞî ŔÖÁö žĘŔ˝)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "Á¤ťó(normal) " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "ąłĂźľĘ(replaced) " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "źłÄĄľÇžî ŔÖÁö žĘŔ˝ " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "net °řŔŻľĘ " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(žË źö žř´Â %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(ťóŸŚ žË źö žřŔ˝) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "ĆĐĹ°ÁöżĄ ĆÄŔĎ źŇŔŻŔÚ śÇ´Â id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "%s (Ŕť)¸Ś ÁúŔÇÇŇ źö žřŔ˝: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "%s (Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "%s (Ŕť)¸Ś ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "ŔĚŔü Çü˝ÄŔÇ źŇ˝ş ĆĐĹ°Áö´Â ÁúŔÇÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: ŔĐ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s spec ĆÄŔĎŔť ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, ĆÄŔĎŔť şĐźŽÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s ą×ˇěŔş žîś˛ ĆĐĹ°ÁöżĄľľ Ć÷ÇԾǞî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "%s (Ŕť)¸Ś šßťý˝ĂĹ°´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s (Ŕť)¸Ś ŔĐ´ÂľĽ ˝ÇĆĐÇÔ: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s (Ŕť)¸Ś šßťý˝ĂĹ°´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "%s (Ŕť)¸Ś ÇĘżäˇÎ ÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "%s (Ŕť)¸Ś ÁŚ°řÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "%s ĆÄŔĎ: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "%s ĆÄŔĎŔş žîś˛ ĆĐĹ°ÁöżĄľľ źÓÇŘ ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "şÎŔűÇŐÇŃ ĆĐĹ°Áö šřČŁ: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "ĆĐĹ°Áö ąâˇĎ(record) šřČŁ: %u\n" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "ąâˇĎ(record) šřČŁ %u (Ŕş)´Â ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "%s ĆĐĹ°Áö´Â źłÄĄľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s żš (db°Ą ÁŚ°řÇÔ)\n" @@ -2474,89 +2474,89 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "ÁŘşń Áß..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "źłÄĄÇŇ ĆĐĹ°Áö¸Ś ÁŘşńÇĎ°í ŔÖ˝Ŕ´Ď´Ů..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "%s (Ŕť)¸Ś şšą¸ÇŐ´Ď´Ů\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... %s (Ŕ¸)ˇÎ\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s (Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů - ŔüźŰ(transfer)żĄ ˝ÇĆĐÇÔ - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "%s ĆĐĹ°Áö´Â ŔçščÄĄÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "%s ĆÄŔĎŔť ŔĐ´Â ľľÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "%s ĆÄŔĎŔĚ ĂֽŠšöŔüŔÇ RPMŔť ÇĘżäˇÎ ÇŐ´Ď´Ů\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s (Ŕş)´Â źłÄĄľÉ źö žř˝Ŕ´Ď´Ů\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "%d ŔÇ źŇ˝şżÍ %d ŔÇ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ĂŁžŇ˝Ŕ´Ď´Ů\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "ŔÇÁ¸źş šŽÁŚˇÎ ŔÎÇŘ ˝ÇĆĐÇÔ:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś źłÄĄÇŐ´Ď´Ů\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "%s ĆÄŔĎŔť ż­ źö žřŔ˝: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" żŠˇŻ°łŔÇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇŐ´Ď´Ů\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "ŔĚ ĆĐĹ°ÁöľéŔť ÁŚ°ĹÇϸé ŔÇÁ¸źşŔĚ ąúÁú źö ŔÖŔ˝:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "%s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "%s (Ŕť)¸Ś źłÄĄÇŐ´Ď´Ů\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2666,170 +2666,170 @@ msgstr "%s ( msgid "cannot open Packages database in %s\n" msgstr "%s žČŔÇ ĆĐĹ°Áö ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "ĆÄŔĎŔĚ żĂšŮ¸ŁÁö(regular) žĘ˝Ŕ´Ď´Ů -- żëˇŽ °Ëťç¸Ś ťýˇŤÇŐ´Ď´Ů\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "żšťó(Expected) żëˇŽ: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr " ˝ÇÁŚ żëˇŽ: %12d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "ź­¸íŔĚ žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "ŔĚŔü PGP ź­¸í\n" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "ŔĚŔü (łťşÎ-żë) ź­¸í! žîśť°Ô žňŔ¸źĚ˝Ŕ´Ďąî!?\n" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "ź­¸í: size(%d)+pad(%d)\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s (Ŕť)¸Ś ˝ÇÇŕÇŇ źö žřŔ˝: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "pgpżĄ ˝ÇĆĐÇÔ\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "pgp ź­¸íŔť ŔŰźşÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ź­¸í żëˇŽ: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "ź­¸íŔť ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "%d šŮŔĚĆŽŔÇ PGP ź­¸íŔť žňžú˝Ŕ´Ď´Ů\n" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "gpgżĄ ˝ÇĆĐÇÔ\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "gpg ź­¸íŔť ŔŰźşÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG ź­¸í żëˇŽ: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "%d šŮŔĚĆŽŔÇ GPG ź­¸íŔť žňžú˝Ŕ´Ď´Ů\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ şÎŔűÇŐÇŃ %%_signatureŔÇ łťżëŔĚ ŔÖ˝Ŕ´Ď´Ů\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ \"%%_gpg_name\" Ŕť źłÁ¤ÇŘ ÁÖźĹžß ÇŐ´Ď´Ů\n" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ \"%%_pgp_name\" Ŕť źłÁ¤ÇŘ ÁÖźĹžß ÇŐ´Ď´Ů\n" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Çě´őŔÇ ĹŠąâ°Ą łĘšŤ ĹŽ´Ď´Ů" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "MD5 ź­¸íŔş °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "ź­¸íŔĚ žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "ź­¸í: size(%d)+pad(%d)\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok Ç᥹סΠŔÎÇŘ %s (Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "%s ľđˇşĹ与¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "¸śżîĆŽľČ ĆÄŔϽýşĹŰŔÇ ¸ńˇĎŔť źöÁýÇĎ°í ŔÖ˝Ŕ´Ď´Ů\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "´ŮŔ˝Ŕť ĂŁŔť źö žř˝Ŕ´Ď´Ů %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s żĄ ŔÇÁ¸źş šŽÁŚ šßťý: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/no.po b/po/no.po index 83b41f7c5..7ca1ae869 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "feil med avhengigheter under bygging:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunne ikke ĺpne tar-rřr: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Feil under lesing av spec-fil fra %s\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Feil under endring av navn fra %s til %s: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunne ikke kjřre stat pĺ %s: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "Fil %s er ikke en vanlig fil.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Fil %s ser ikke ut til ĺ vćre en spec-fil.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Bygger mĺlplattformene: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Bygger for mĺl %s\n" @@ -203,122 +203,122 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "Bruk: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "Bruk -e eller --erase i stedet.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Intern feil i argumentprosesseringen (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "kun ett střrre modi kan spesifiseres" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "én type spřrring/verifisering kan utfřres om gangen" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "uventede flagg for spřrring" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "ventet spřrringsformat" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "uventet spřrringskilde" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath oppgitt for operasjon som ikke bruker en database" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "kun installasjon, oppgradering, rmsource og rmspec kan tvinges" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "filer kan kun omplasseres under pakkeinstallasjon" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "kune en av --prefix eller --relocate kan brukes" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate og --excludepath kan kun brukes ved installasjon av nye pakker" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan kun brukes ved installasjon av nye pakker" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argumenter til --prefix mĺ begynne med en /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -326,7 +326,7 @@ msgstr "" "skript som slĺr av alternativer kan kun spesifiseres under pakkeinstallasjon " "og sletting" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -334,105 +334,105 @@ msgstr "" "alternativer som slĺr av utlřsing kan kun spesifiseres under " "pakkeinstallasjon, og sletting" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "ingen filer ĺ signere\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "kan ikke aksessere fil %s\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp ikke funnet: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Skriv inn passord: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Passordsjekk feilet\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Passord er ok.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "kjřring feilet\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "ingen pakkefiler oppgitt for ombygging" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "ingen spec-fil oppgitt for bygging" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "ingen tar-fil oppgitt for bygging" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "ingen pakker oppgitt for signering" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "ingen pakker oppgitt for installering" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "ingen argumenter oppgitt for spřrring" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "ingen argumenter oppgitt for verifisering" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "uventede argumenter til --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "ingen argumenter oppgitt for spřrring" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" @@ -510,180 +510,180 @@ msgstr "&& og || ikke st msgid "syntax error in expression\n" msgstr "syntaksfeil i uttrykk\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIDSJEKK feil: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Mangler '(' i %s %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Mangler ')' i %s(%s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ugyldig %s-tegn: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Mangler '(' i %s %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "To filer pĺ én linje: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Filen mĺ begynne med \"/\": %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Kan ikke blande spesiell %%doc med andre skjema: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "Fil listet to ganger: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "Fil ikke funnet: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Ugyldig eier/gruppe: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Fil %s: %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "linje %d: Filnavn ikke tillatt: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "Installerer %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Ugyldig fil %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Kunne ikke kjřre %s: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "klarte ikke ĺ ĺpne %s: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s feilet\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "kunne ikke skrive alle data til %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "Klarte ikke ĺ finne %s:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -717,156 +717,156 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "klarte ikke ĺ ĺpne %s: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "feil under oppretting av arkiv %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy skriving feilet: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy: feil under lesing: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Kunne ikke ĺpne PreIn-fil: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Kunne ikke ĺpne PreUn-fil: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Kunne ikke ĺpne PostIn-fil: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Kunne ikke ĺpne PostUn-fil: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Kunne ikke ĺpne VerifyScript-fil: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek feilet: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s er ikke en RPM-pakke\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: leser header fra %s\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Kunne ikke skrive header til %s: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "Ugyldige CSA-data\n" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Kunne ikke skrive header til %s: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Genererer signatur: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "Kunne ikke ĺpne %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Kunne ikke ĺpne sigmĺl %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Kunne ikke skrive header til %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Kunne ikke lese \"payload\" fra %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive \"payload\" til %s: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1369,17 +1369,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linje %d: Ugyldig nummer: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linje %d: Ugyldig no%s nummer: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linje %d: Ugyldig %s-nummer: %s\n" @@ -1425,85 +1425,85 @@ msgstr "" msgid " failed - " msgstr " feilet - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "pakke %s er allerede installert" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:425 +#: lib/depends.c:428 msgid "(db files)" msgstr "" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "ingen pakker\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "NEI" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "JA" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1550,46 +1550,46 @@ msgstr "klarte ikke msgid "file %s is on an unknown device\n" msgstr "fil %s er pĺ en ukjent enhet\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s lagret som %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s feilet: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s feilet: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s opprettet som %s\n" @@ -2060,300 +2060,300 @@ msgid "generate signature" msgstr "generer signatur" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "pakke %s er for en annen arkitektur" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "pakke %s er for et annet operativsystem" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "pakke %s er allerede installert" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "sti %s i pakke %s kan ikke relokeres" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "pakke %s er i konflikt: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "pakke %s er i konflikt: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " er i konflikt med %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " kreves av %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Datatype %d ikke střttet\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "kan ikke opprette %%%s %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "kan ikke skrive til %%%s %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "kildepakke forventet, binćr funnet\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "kildepakke inneholder ikke en .spec-fil\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: kjřrer %s-skript (hvis noen)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "klarte ikke ĺ ĺpne %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s feilet\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "ukorrekt format: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(inneholder ingen filer)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normal " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "erstattet " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "ikke installert" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "delt via nett " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(ukjent %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(ingen tilstand)" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "pakken har verken fileier eller id-lister\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "kan ikke spřrre pĺ %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "feil under ĺpning av %s: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "spřrring pĺ %s feilet\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "kildepakker i gammelt format kan ikke spřrres\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: lesing av manifest feilet: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "gruppe %s inneholder ingen pakker\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "ingen pakke utlřser %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "kunne ikke opprette %s: %s\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ingen pakke utlřser %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "ingen pakke krever %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "ingen pakke gir %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s eies ikke av noen pakke\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldig pakkenummer: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "pakke %s er ikke installert\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 msgid "(added files)" msgstr "" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2444,89 +2444,89 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "pakke %s er i konflikt: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "Forbereder..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "Forbereder pakker for installasjon..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Henter %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... som %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "hopper over %s - overfřring feilet - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "pakke %s kan ikke relokeres\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "feil under lesing fra fil %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "fil %s trenger en nyere versjon av RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "fant %d kilde- og %d binćrpakker\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "feilede avhengigheter:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "installerer binćrpakker\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" spesifiserer flere pakker\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "fjerning av disse pakkene vil řdelegge avhengigheter:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "kan ikke ĺpne %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Installerer %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2636,169 +2636,169 @@ msgstr "Kunne ikke msgid "cannot open Packages database in %s\n" msgstr "kan ikke ĺpne pakkedatabase i %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunne ikke kjřre %s: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "For stor header" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "hopp over MD5-signaturer" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer katalog %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "henter liste over monterte filsystemer\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "mangler %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "feilede avhengigheter:\n" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 2bd3f1354..c03711372 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Paweł Dziekoński \n" "Language-Team: Polish \n" @@ -16,53 +16,53 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "niespełnione zależności:\n" -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Nie można otworzyć pliku spec: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Otwarcie potoku tara nie powiodło się: %s\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Odczytanie pliku spec z %s nie powiodło się\n" -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Zmiana nazwy %s na %s nie powiodła się\n" -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "stat nie powiodło się %s: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Plik: %s nie jest regularnym plikiem\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s nie wygląda na pakiet RPM\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Budowanie dla platform: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Budowanie dla %s\n" @@ -212,138 +212,138 @@ msgstr "Program mo msgid "Usage: %s {--help}\n" msgstr "Użycie: rpm {--help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Użyj -e lub --erase\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Błąd wewnętrzny w przetwarzaniu argumentu (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "tylko jeden główny tryb pracy może być podany" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "tylko jeden typ odpytywania/sprawdzania można wykonać na raz" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "błędna konstrukcja argumentów odpytywania" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "błędna konstrukcja argumentów odpytywania" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "błędna konstrukcja argumentów odpytywania" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath podano dla operacji nie używającej bazy" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "tylko instalację, uaktualnienie i usuwanie źródeł można wymusić" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "przesuwania plików można dokonać tylko w trakcie instalacji" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "nie można jednocześnie użyć --prefix i --relocate" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate i --excludepath można użyć tylko w trakcie instalacji nowych " "pakietów" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix można użyć tylko w trakcie instalacji nowych pakietów" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argumenty dla --prefix muszą się rozpoczynać od /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "nie można jednocześnie użyć --excludedocs i --includedocs" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches można użyć tylko w trakcie usuwania pakietów" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles można użyć tylko w trakcie instalacji pakietów" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb można użyć tylko w trakcie instalacji lub usuwania pakietów" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb można użyć tylko w trakcie instalacji lub usuwania pakietów" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb można użyć tylko w trakcie instalacji lub usuwania pakietów" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -352,14 +352,14 @@ msgstr "" "--nodeps można użyć tylko w trakcie budowania, instalacji, usuwania lub " "sprawdzania pakietów" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test można użyć tylko w trakcie instalacji, usuwania lub budowania pakietów" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -367,87 +367,87 @@ msgstr "" "--root (-r) można użyć tylko w trakcie instalacji, usuwania, sprawdzania " "pakietów lub przebudowywania bazy" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenty dla --root (-r) muszą się rozpoczynać od /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "brak dostępu do pliku %s\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "nie znaleziono pgp: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Podaj hasło: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Weryfikacja hasła nieudana\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Hasło jest prawidłowe.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Błędny %%_signature spec w pliku makra.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign można użyć tylko w trakcie budowania pakietu" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "wykonanie nie powiodło się\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "nie podano nazw pakietów do przebudowania" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "nie podano nazw plików spec do budowania" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "nie podano nazw plików tar do budowania" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "nie podano nazwy pakietu do podpisania" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "nie podano nazw plików do zainstalowania" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "nie podano argumentów dla trybu zapytań" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "nie podano argumentów dla sprawdzania" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "nieoczekiwane argumenty dla --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "nie podano argumentów dla trybu zapytań" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Nie można otworzyć pliku tymczasowego" @@ -535,180 +535,180 @@ msgstr "&& i || nie jest wspierane dla msgid "syntax error in expression\n" msgstr "błąd składni w wyrażeniu" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK nie powiodło się: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "Brak '(' w %s %s" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "Brak ')' w %s(%s" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "Błędny znak %s: %s" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Brak '(' w %s %s" -#: build/files.c:545 +#: build/files.c:548 #, fuzzy, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Brak białego znaku po %s(): %s" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Błędna składnia: %s(%s)" -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Błędne określenie trybu: %s(%s)" -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Błędne określenie dirmode: %s(%s)" -#: build/files.c:756 +#: build/files.c:759 #, fuzzy, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Niespotykana długość określenia lokalizacji \"%.*s\" w %%lang(%s)" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Powtórzone określenie lokalizacji %.*s w %%lang(%s)" -#: build/files.c:924 +#: build/files.c:927 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "Limit trafień dla %%docdir" -#: build/files.c:930 +#: build/files.c:933 #, fuzzy, c-format msgid "Only one arg for %%docdir\n" msgstr "Tylko jeden argument dla %%docdir" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Dwa pliki w jedenj linii: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Plik musi się zaczynać od \"/\": %s" -#: build/files.c:986 +#: build/files.c:989 #, fuzzy, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Nie można mieszać specjalnej %%doc z innymi formami: %s" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Plik podany dwukrotnie: %s" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Plik nie zgadza się z prefiksem (%s): %s" -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Nie znaleziono pliku: %s" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Błędny użytkownik/grupa: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Plik %4d: 0%o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Plik musi się zaczynać od \"/\": %s" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "linia %d: Wersja niedozwolona: %s" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Nie znaleziono pliku: %s" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Nie można otworzyć %%files pliku: %s" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "linia: %s" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "plik %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Nie można uruchomić %s" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Nie można wykonać fork na %s" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s nie powiodło się" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "zapisanie wszystkich danych do %s nie powiodło się" -#: build/files.c:2521 +#: build/files.c:2524 #, fuzzy, c-format msgid "Finding %s: (using %s)...\n" msgstr "Wyszukiwanie wymaganych zasobów...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "Wyszukiwanie nie powiodło się" -#: build/files.c:2686 +#: build/files.c:2689 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Przetwarzanie plików: %s\n" @@ -742,157 +742,157 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "Nie można rozwiązać nazwy systemu: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "utworzenie archiwum pliku %s nie powiodło się: %s" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "utworzenie archiwum pliku %s nie powiodło się: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "zapis w trybie cpio_copy nie powiódł się: %s" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "odczyt w trybie cpio_copy nie powiódł się: %s" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Nie można otworzyć pliku PreIn: %s" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Nie można otworzyć pliku PreUn: %s" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Nie można otworzyć pliku PostIn: %s" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Nie można otworzyć pliku PostUn: %s" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Nie można otworzyć pliku VerifyScript: %s" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Nie można otworzyć skryptu Trigger: %s" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: otwieranie %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: czytanie %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: readLead nie powiodło się\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s nie jest pakietem RPM\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: czytanie nagłówka z %s\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nie można odczytać ikony: %s" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nie można zapisać %s" -#: build/pack.c:500 +#: build/pack.c:502 #, fuzzy msgid "Bad CSA data\n" msgstr "Błędne dane CSA" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Nie można zapisać %s" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Generowanie sygnatury: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nie można odczytać ikony: %s" -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "Nie można otworzyć %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie można zapisać pakietu: %s" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nie można odczytać sigtarget: %s" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nie można odczytać ikony: %s" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nie można zapisać pakietu: %s" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nie można odczytać ikony: %s" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nie można zapisać pakietu: %s" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Nie można wygenerować wyjściowej nazwy dla pakietu %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "nie można utworzyć %s" @@ -1408,17 +1408,17 @@ msgstr "wymu msgid "lookup i18N strings in specfile catalog" msgstr "wyszukaj wpisy I18N w katalogu speca" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "linia %d: Błędny numer: %s" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linia %d: błędny numer no%s: %d" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linia %d: Błędny numer %s: %s\n" @@ -1465,90 +1465,90 @@ msgstr "" msgid " failed - " msgstr " nie powiodło się -" -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "pakiet %s-%s-%s jest już zainstalowany" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "plik %s nie należy do żadnego pakietu\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "plik %s nie należy do żadnego pakietu\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "błędny status pliku: %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "Udostępniane zasoby:" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "znaleziono %d pakietów\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "plik %s nie należy do żadnego pakietu\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 #, fuzzy msgid "NO " msgstr "NIE DOBRZE" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "usuwanie indeksu grupy\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1597,46 +1597,46 @@ msgstr "nie mo msgid "file %s is on an unknown device\n" msgstr "plik %s jest na nieznanym urządzeniu" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linia %d: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ostrzeżenie: %s zapisany jako %s" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nie można usunąć %s - katalog nie jest pusty" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "skasowanie katalogu %s nie powiodło się" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otwarcie %s nie powiodło się\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ostrzeżenie: %s utworzony jako %s" @@ -2141,307 +2141,307 @@ msgid "generate signature" msgstr "generuj sygnaturę PGP/GPG" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "pakiet %s-%s-%s zbudowano dla innej architektury" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "pakiet %s-%s-%s jest już zainstalowany" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "pakiet %s nie jest przesuwalny\n" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, fuzzy, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" "plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" "pakiet %s-%s-%s (który jest nowszy niż %s-%s-%s) jest już zainstalowany" -#: lib/problems.c:270 +#: lib/problems.c:271 #, fuzzy, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s" -#: lib/problems.c:280 +#: lib/problems.c:281 #, fuzzy, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "zależności pakietu %s nie zostały spełnione: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "zależności pakietu %s nie zostały spełnione: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, fuzzy, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "wystąpił nieznany błąd %d w trakcie manipulowania pakietem %s-%s-%s" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " jest w konflikcie z %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " jest wymagany przez %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Typ danych %d nie jest obsługiwany\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "nie można utworzyć %s" -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "nie można zapisać do %s" -#: lib/psm.c:483 +#: lib/psm.c:481 #, fuzzy msgid "source package expected, binary found\n" msgstr "spodziewany pakiet źródłowy a nie binarny" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "pakiet źródłowy nie zawiera pliku .spec" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "uruchamianie skryptu postinstall (jeśli istnieje)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "wykonanie skryptu nie powiodło się" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "wykonanie skryptu nie powiodło się" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "pakiet: %s-%s-%s test plików = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "użytkownik %s nie istnieje - użyto konta root" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s nie istnieje - użyto grupy root" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozpakowanie archiwum nie powiodło się %s%s: %s" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " na pliku " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nie można otworzyć %s: %s" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s nie powiodło się" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "błąd w formacie: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(nie zawiera plików)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normalny " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "zastąpiony " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "niezainstalowany" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "udostępniony w sieci" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(nieznany %3d)" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(brak statusu)" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "pakiet nie ma ani właściciela pliku ani list id" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "nie można odwiązać %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "otwarcie %s nie powiodło się\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "odpytywanie %s nie powiodło się\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "pakiety w starym formacie nie mogą być odpytywane\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: readLead nie powiodło się\n" -#: lib/query.c:708 +#: lib/query.c:709 #, 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:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "znaleziono %d pakietów\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s nie zawiera żadnych pakietów\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "żaden pakiet nie zahacza %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Odczytanie %s nie powiodło się: %s." -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "żaden pakiet nie zahacza %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "żaden pakiet nie wymaga %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "żaden pakiet nie udostępnia %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "plik %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, 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:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "błędny numer pakietu: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "numer rekordu pakietu: %d\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "nie można odczytać rekordu %d\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "błędny status pliku: %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "Udostępniane zasoby:" @@ -2534,90 +2534,90 @@ msgstr " rpm {--version}" msgid "package %s has unsatisfied %s: %s\n" msgstr "zależności pakietu %s nie zostały spełnione: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "nie podano nazw plików do zainstalowania" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Ściąganie %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "... jako %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s pomijany - transmisja %s nie powiodła się\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "pakiet %s nie jest przesuwalny\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "błąd czytania z pliku %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "plik %s wymaga nowszej wersji RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie może być zainstalowany\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "znaleziono %d pakietów źródłowych i %d binarnych\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "niespełnione zależności:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "instalacja pakietów binarnych\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "nie można otworzyć pliku %s: %s" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" określa wiele pakietów\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "usunięcie tych pakietów zerwie zależności:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "nie można otworzyć %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Instalacja %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2727,176 +2727,176 @@ msgstr "Nie mo msgid "cannot open Packages database in %s\n" msgstr "nie można otworzyć %s/packages.rpm\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "plik nieregularny -- sprawdzanie rozmiaru pominięte\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Brak sygnatury\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Stara sygnatura PGP\n" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stara (tylko wewnętrzna) sygnatura! Skąd Ty to wziąłeś!?" -#: lib/signature.c:225 +#: lib/signature.c:226 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nie można uruchomić %s" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "pgp nie powiodło się" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "zapisanie sygnatury przez pgp nie powiodło się" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "rozmiar sygnatury PGP: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "nie można odczytać sygnatury" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Mam %d bajtów sygnatury PGP\n" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "gpg nie powiodło się" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "zapisanie sygnatury przez gpg nie powiodło się" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "rozmiar sygnatury GPG: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Mam %d bajtów sygnatury GPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Błędny %%_signature spec w pliku makra.\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musisz ustawić \"%%_gpg_name\" w pliku swego makra" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musisz ustawić \"%%_pgp_name\" w pliku swego makra" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Rozmiar nagłówka jest zbyt duży" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "pomiń wszelkie sygnatury MD5" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Brak sygnatury\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Blok sygnatury: %d\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pominięty z powodu flagi missingok\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "brak %s\n" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Niespełnione zależności dla %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9d831ba09..cd16643d0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,61 +4,61 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "lista dependncias do pacote" # , c-format -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "No consegui abrir: %s\n" # , c-format #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "No consegui abrir: %s\n" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "no foi passado pacote para instalao" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "instale pacote" @@ -218,139 +218,139 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "uso: rpm {--help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Use -e ou --erase no lugar.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "somente um modo principal pode ser especificado" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "um tipo de pesquisa/verificao pode ser feita por vez" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath passado para uma operao que no usa um banco de dados" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "somente instalao e atualizao podem ser foradas" -#: rpmqv.c:733 +#: rpmqv.c:737 #, fuzzy msgid "files may only be relocated during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:736 +#: rpmqv.c:740 #, fuzzy msgid "only one of --prefix or --relocate may be used" msgstr "somente um entre --excludedocs e --includedocs pode ser especificado" -#: rpmqv.c:739 +#: rpmqv.c:743 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argumentos para --prefix devem comear com uma /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "" "--hash (-h) somente podem ser especificado durante instalaes de pacotes" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" "--replacepkgs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "" "--excludedocs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "" "--includedocs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "somente um entre --excludedocs e --includedocs pode ser especificado" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "" "--ignorearch somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "" "--allmatches somente pode ser especificado durante desinstalaes de pacotes" -#: rpmqv.c:794 +#: rpmqv.c:798 #, fuzzy msgid "--allfiles may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:799 +#: rpmqv.c:803 #, fuzzy msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -359,7 +359,7 @@ msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -368,7 +368,7 @@ msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -377,7 +377,7 @@ msgstr "" "--nodeps somente pode ser especificado durante [des]instalaes e verificaes " "de pacotes" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -385,7 +385,7 @@ msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -393,90 +393,90 @@ msgstr "" "--root (-r) somente pode ser especificado durante [des]instalaes, pesquisas " "e reconstruo de bancos de dados" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "argumentos para --root (-r) devem comear com uma /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:883 +#: rpmqv.c:887 #, fuzzy msgid "pgp not found: " msgstr "no foi passado pacote para desinstalao" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Checagem de pass phrase falhou\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Pass phrase ok.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign somente pode ser usado durante a construo de pacotes" -#: rpmqv.c:923 +#: rpmqv.c:927 #, fuzzy msgid "exec failed\n" msgstr "Construo falhou.\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "no foram passados pacotes para reconstruo" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "no foi passado arquivo spec para construo" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "no foram passados arquivos tar para construo" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "no foram passados pacotes para assinatura" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "no foi passado pacote para instalao" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "no foi passado argumento para pesquisa" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "no foi passado argumento para verificao" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "argumentos no esperados em --querytags" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "no foi passado argumento para pesquisa" # , c-format -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "No consegui abrir: %s\n" @@ -561,196 +561,196 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" # , c-format -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "No consegui abrir: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" # , c-format -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" # , c-format #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "No consegui abrir: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" # , c-format -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" # , c-format -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "no foi passado pacote para desinstalao" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" # , c-format -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" # , c-format -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "No consegui abrir: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "no foi passado pacote para desinstalao" # , c-format -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "Construo falhou.\n" # , c-format -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "No consegui abrir o pipe tar: %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" # , c-format -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "No consegui abrir o pipe tar: %s\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -785,180 +785,180 @@ msgid "Could not canonicalize hostname: %s\n" msgstr "" # , c-format -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:286 +#: build/pack.c:288 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" # , c-format -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" # , c-format -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "gere assinatura PGP" # , c-format -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" # , c-format -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "No consegui abrir: %s\n" @@ -1520,18 +1520,18 @@ msgid "lookup i18N strings in specfile catalog" msgstr "" # , c-format -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "No consegui abrir: %s\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1578,88 +1578,88 @@ msgstr "" msgid " failed - " msgstr "Construo falhou.\n" -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "no foi passado pacote para instalao" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" # , c-format -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "No consegui abrir: %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "pesquise todos os pacotes" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" # , c-format -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "No consegui abrir: %s\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1709,50 +1709,50 @@ msgstr "No consegui abrir: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" # , c-format -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "No consegui abrir: %s\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Construo falhou.\n" # , c-format -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "No consegui abrir: %s\n" @@ -2265,310 +2265,310 @@ msgid "generate signature" msgstr "gere assinatura PGP" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "no foi passado pacote para instalao" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "conflicts with" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "is needed by" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" # , c-format -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "pesquise o pacote ao qual pertence" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "no execute nenhum estgio" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "no foi passado pacote para instalao" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "Construo falhou.\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "no foi passado pacote para instalao" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "no foi passado pacote para instalao" # , c-format -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "" # , c-format -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "pesquise todos os pacotes" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:759 +#: lib/query.c:760 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "no foram passados pacotes para assinatura" # , c-format -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "no foram passados pacotes para assinatura" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "no foi passado pacote para instalao" # , c-format -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "No consegui abrir: %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2664,11 +2664,11 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "no foi passado pacote para instalao" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "no foi passado pacote para instalao" @@ -2681,86 +2681,86 @@ msgstr "no foi passado pacote para instalao" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, fuzzy, c-format msgid "Retrieving %s\n" msgstr "RPM verso %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "no foi passado pacote para instalao" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "no foi passado pacote para instalao" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 #, fuzzy msgid "failed dependencies:\n" msgstr "lista dependncias do pacote" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 #, fuzzy msgid "installing binary packages\n" msgstr "instale pacote" # , c-format -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 #, fuzzy msgid "removing these packages would break dependencies:\n" msgstr "lista dependncias do pacote" # , c-format -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, fuzzy, c-format msgid "rollback %d packages to %s" msgstr "no foi passado pacote para desinstalao" @@ -2878,151 +2878,151 @@ msgstr "No consegui abrir: %s\n" msgid "cannot open Packages database in %s\n" msgstr "No consegui abrir: %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 #, fuzzy msgid "Old PGP signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" # , c-format -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "Construo falhou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "Construo falhou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "desconsidere quaisquer assinaturas MD5" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "gere assinatura PGP" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3036,26 +3036,26 @@ msgstr "" # "Content-Transfer-Encoding: 8-bit\n" # , c-format #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM verso %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "lista dependncias do pacote" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/ro.po b/po/ro.po index 1121636e9..325374954 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "" @@ -201,229 +201,229 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1047 +#: rpmqv.c:1051 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1141 +#: rpmqv.c:1145 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "" @@ -498,180 +498,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,152 +705,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:471 +#: build/pack.c:473 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:490 +#: build/pack.c:492 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:574 +#: build/pack.c:576 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1348,17 +1348,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1404,84 +1404,84 @@ msgstr "" msgid " failed - " msgstr "" -#: lib/depends.c:149 +#: lib/depends.c:152 #, c-format msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:425 +#: lib/depends.c:428 msgid "(db files)" msgstr "" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 msgid "(db package)" msgstr "" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1528,46 +1528,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2021,298 +2021,298 @@ msgid "generate signature" msgstr "" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, c-format msgid "package %s is intended for a %s architecture" msgstr "" -#: lib/problems.c:240 +#: lib/problems.c:241 #, c-format msgid "package %s is intended for a %s operating system" msgstr "" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "" -#: lib/problems.c:293 +#: lib/problems.c:294 #, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "conflicts with" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "is needed by" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:709 +#: lib/psm.c:716 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 msgid "(added files)" msgstr "" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2403,89 +2403,89 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2595,167 +2595,167 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:421 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 1c4806c6a..a61d46321 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,53 +15,53 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "" @@ -207,229 +207,229 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1047 +#: rpmqv.c:1051 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1141 +#: rpmqv.c:1145 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "" @@ -504,180 +504,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -711,152 +711,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:471 +#: build/pack.c:473 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:490 +#: build/pack.c:492 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:574 +#: build/pack.c:576 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1354,17 +1354,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" @@ -1410,84 +1410,84 @@ msgstr "" msgid " failed - " msgstr "" -#: lib/depends.c:149 +#: lib/depends.c:152 #, c-format msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:404 +#: lib/depends.c:407 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:425 +#: lib/depends.c:428 msgid "(db files)" msgstr "" -#: lib/depends.c:437 +#: lib/depends.c:440 msgid "(db provides)" msgstr "" -#: lib/depends.c:450 +#: lib/depends.c:453 msgid "(db package)" msgstr "" -#: lib/depends.c:489 +#: lib/depends.c:492 #, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1534,46 +1534,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2027,298 +2027,298 @@ msgid "generate signature" msgstr "" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, c-format msgid "package %s is intended for a %s architecture" msgstr "" -#: lib/problems.c:240 +#: lib/problems.c:241 #, c-format msgid "package %s is intended for a %s operating system" msgstr "" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "" -#: lib/problems.c:293 +#: lib/problems.c:294 #, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "conflicts with" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 msgid "is needed by" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:709 +#: lib/psm.c:716 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 msgid "(added files)" msgstr "" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 msgid "(added provide)" msgstr "" @@ -2409,89 +2409,89 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2601,167 +2601,167 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:418 +#: lib/verify.c:421 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 5da9e9649..d5961b28a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-08-29 13:55-0400\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -11,53 +11,53 @@ msgstr "" "Date: 1999-04-03 12:20+0200\n" "X-Generator: KBabel 0.8\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÚÁ×ÉÓÉÍĎÓÔÉ ÓÂĎŇËÉ:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "ďŰÉÂËÁ ĎÔËŇŮÔÉŃ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ %s: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "ďŰÉÂËÁ ĎÔËŇŮÔÉŃ ËÁÎÁĚÁ tar: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "ďŰÉÂËÁ ŢÔĹÎÉŃ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ ÉÚ %s\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÉÍĹÎĎ×ÁÔŘ %s × %s: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐĎĚŐŢÉÔŘ ÉÎĆĎŇÍÁĂÉŔ Ď %s: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "îĹ ĎÂŮŢÎŮĘ ĆÁĘĚ: %s.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "ćÁĘĚ %s ÎĹ ĐĎČĎÖ ÎÁ ĆÁĘĚ ÓĐĹĂÉĆÉËÁĂÉÉ.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "đĚÁÔĆĎŇÍŮ ÄĚŃ ÓÂĎŇËÉ: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "óÂĎŇËÁ ÄĚŃ ĐĚÁÔĆĎŇÍŮ %s\n" @@ -205,128 +205,128 @@ msgstr " msgid "Usage: %s {--help}\n" msgstr "éÓĐĎĚŘÚĎ×ÁÎÉĹ: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "×ÁŇÉÁÎÔ --rcfile ÂĎĚŘŰĹ ÎĹ ÉÓĐĎĚŘÚŐĹÔÓŃ.\n" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "÷ÍĹÓÔĎ ÜÔĎÇĎ ÉÓĐĎĚŘÚŐĘÔĹ \"--macros <ĆÁĘĚ:...>\".\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "÷ÎŐÔŇĹÎÎŃŃ ĎŰÉÂËÁ ĐŇÉ ĎÂŇÁÂĎÔËĹ ÁŇÇŐÍĹÎÔĎ× (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĎÄÉÎ ÉÚ ĎÓÎĎ×ÎŮČ ŇĹÖÉÍĎ×" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "ÚÁ ĎÄÉÎ ŇÁÚ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚÎĹÎ ÔĎĚŘËĎ ĎÄÉÎ ÔÉĐ ĐŇĎ×ĹŇËÉ ÉĚÉ ÚÁĐŇĎÓÁ" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "ÎĹĎÖÉÄÁÎÎŮĹ ĆĚÁÇÉ ÚÁĐŇĎÓÁ" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "ÎĹĎÖÉÄÁÎÎŮĘ ĆĎŇÍÁÔ ÚÁĐŇĎÓÁ" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "ÎĹĎÖÉÄÁÎÎŮĘ ÉÓÔĎŢÎÉË ÚÁĐŇĎÓÁ" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "ĐÁŇÁÍĹÔŇ --dbpath ÚÁÄÁÎ ÄĚŃ ĎĐĹŇÁĂÉÉ, ÎĹ ÉÓĐĎĚŘÚŐŔÝĹĘ ÂÁÚŐ ÄÁÎÎŮČ" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "ĐŇÉÎŐÄÉÔĹĚŘÎŮÍÉ ÍĎÇŐÔ ÂŮÔŘ ÔĎĚŘËĎ ŐÓÔÁÎĎ×ËÁ, ĎÂÎĎ×ĚĹÎÉĹ, ŐÄÁĚĹÎÉĹ ÉÓČĎÄÎÉËĎ× " "É ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "ĆÁĘĚŮ ÍĎÇŐÔ ÂŮÔŘ ĐĹŇĹÍĹÝĹÎŮ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "" "ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎ ÔĎĚŘËĎ ĎÄÉÎ ÉÚ ×ÁŇÉÁÎÔĎ× --prefix ÉĚÉ --relocate" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "×ÁŇÉÁÎÔŮ --relocate É --excludepath ÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ " "ÎĎ×ŮČ ĐÁËĹÔĎ×" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "×ÁŇÉÁÎÔ --prefix ÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÎĎ×ŮČ ĐÁËĹÔĎ×" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "ÁŇÇŐÍĹÎÔŮ ÄĚŃ --prefix ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" "ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎ ÔĎĚŘËĎ ĎÄÉÎ ÉÚ ĐÁŇÁÍĹÔŇĎ× --excludedocs ÉĚÉ --" "includedocs" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÄÁĚĹÎÉÉ ĐÁËĹÔÁ" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔÁ" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÉĚÉ ŐÄÁĚĹÎÉÉ ĐÁËĹÔÁ" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -334,7 +334,7 @@ msgstr "" "ĐÁŇÁÍĹÔŇŮ ÚÁĐŇĹÔÁ ÓĂĹÎÁŇÉĹ× ÍĎÇŐÔ ÂŮÔŘ ŐËÁÚÁÎŮ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÉĚÉ " "ŐÄÁĚĹÎÉÉ ĐÁËĹÔÁ" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -342,7 +342,7 @@ msgstr "" "ĐÁŇÁÍĹÔŇŮ ÚÁĐŇĹÔÁ ÔŇÉÇÇĹŇĎ× ÍĎÇŐÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÉĚÉ " "ŐÄÁĚĹÎÉÉ ĐÁËĹÔÁ(Ď×)" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -350,14 +350,14 @@ msgstr "" "--nodeps ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ÓÂĎŇËĹ, ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ É ĐŇĎ×ĹŇËÉ " "ĐÁËĹÔĎ×" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ É ÓÂĎŇËĹ ĐÁËĹÔÁ" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,87 +365,87 @@ msgstr "" "--root (-r) ÍĎÖĹÔ ÂŮÔŘ ŐËÁÚÁÎÁ ÔĎĚŘËĎ ĐŇÉ ŐÓÔÁÎĎ×ËĹ, ŐÄÁĚĹÎÉÉ, ÚÁĐŇĎÓÁČ " "ĐÁËĹÔÁ É ĐĹŇĹÓÔŇĎĹÎÉÉ ÂÁÚŮ ÄÁÎÎŮČ" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "ÁŇÇŐÍĹÎÔŮ ÄĚŃ --root (-r) ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "ÎĹÔ ĆÁĘĚĎ× ÄĚŃ ĐĎÄĐÉÓÉ\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "ÎĹÔ ÄĎÓÔŐĐÁ Ë ĆÁĘĚŐ %s\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp ÎĹ ÎÁĘÄĹÎ: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "÷×ĹÄÉÔĹ ËĚŔŢĹ×ŐŔ ĆŇÁÚŐ: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "îĹ×ĹŇÎÁŃ ËĚŔŢĹ×ÁŃ ĆŇÁÚÁ\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "ëĚŔŢĹ×ÁŃ ĆŇÁÚÁ ĐŇÉÎŃÔÁ.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "îĹ×ĹŇÎÁŃ ÓĐĹĂÉĆÉËÁĂÉŃ %%_signature × ÍÁËŇĎĆÁĘĚĹ.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎ ÔĎĚŘËĎ ĐŇÉ ÓÂĎŇËĹ ĐÁËĹÔĎ×" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "ÚÁĐŐÓË ÎĹ ŐÄÁĚÓŃ\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĹŇĹÓÂĎŇËÉ" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "ÎĹ ÚÁÄÁÎ ĆÁĘĚ ÓĐĹĂÉĆÉËÁĂÉÉ ÄĚŃ ÓÂĎŇËÉ ĐÁËĹÔÁ" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "ÎĹ ÚÁÄÁÎŮ tar-ĆÁĘĚŮ ÄĚŃ ÓÂĎŇËÉ ĐÁËĹÔÁ" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĎÄĐÉÓÉ" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÓÔÁÎĎ×ËÉ" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÚÁĐŇĎÓÁ" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÄĚŃ ×ĹŇÉĆÉËÁĂÉÉ" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "ÎĹĎÖÉÄÁÎÎŮĹ ÁŇÇŐÍĹÎÔŮ ÄĚŃ --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÚÁĐŇĎÓÁ" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ×ŇĹÍĹÎÎŮĘ ĆÁĘĚ.\n" @@ -523,180 +523,180 @@ msgstr "&& msgid "syntax error in expression\n" msgstr "ÓÉÎÔÁËÓÉŢĹÓËÁŃ ĎŰÉÂËÁ × ×ŮŇÁÖĹÎÉÉ\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "ďŰÉÂËÁ TIMECHECK: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "ďÔÓŐÔÓÔ×ŐĹÔ '(' × %s %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ ')' × %s(%s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "îĹ×ĹŇÎŮĘ ÔĎËĹÎ %s: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "ďÔÓŐÔÓÔ×ŐĹÔ %s × %s %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "îĹ ĐŇĎÂĹĚ ÓĚĹÄŐĹÔ ĐĎÓĚĹ %s(): %s\n" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "îĹ×ĹŇÎŮĘ ÓÉÎÔÁËÓÉÓ: %s(%s)\n" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "îĹ×ĹŇÎŮĹ ĐŇÁ×Á: %s(%s)\n" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "îĹ×ĹŇÎŮĹ ĐŇÁ×Á ÎÁ ËÁÔÁĚĎÇ %s(%s)\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "îĹĎÂŮŢÎÁŃ ÄĚÉÎÁ locale: \"%.*s\" × %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "äŐÂĚÉËÁÔ locale %.*s × %%lang(%s)\n" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "ěÉÍÉÔ ÄĚŃ %%docdir ĐŇĹ×ŮŰĹÎ\n" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "ôĎĚŘËĎ ĎÄÉÎ ÁŇÇŐÍĹÎÔ ÄĚŃ %%docdir\n" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "ä×Á ĆÁĘĚÁ × ĎÄÎĎĘ ÓÔŇĎËĹ: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "ćÁĘĚ ÄĎĚÖĹÎ ÎÁŢÉÎÁÔŘÓŃ Ó \"/\": %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "îĹĚŘÚŃ ÓÍĹŰÉ×ÁÔŘ ÓĐĹĂ. %%doc Ó ÄŇŐÇÉÍÉ ĆĎŇÍÁÍÉ: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "ćÁĘĚ ŐËÁÚÁÎ Ä×ÁÖÄŮ: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "óÉÍ×ĎĚÉŢĹÓËÁŃ ÓÓŮĚËÁ ŐËÁÚŮ×ÁĹÔ ÎÁ BuildRoot: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "ćÁĘĚ ÎĹ ÓĎĎÔ×ĹÔÓÔŐĹÔ ĐŇĹĆÉËÓŐ (%s): %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "ćÁĘĚ ÎĹ ÎÁĘÄĹÎ: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "îĹ×ĹŇÎÁŃ ĐÁŇÁ ×ĚÁÄĹĚĹĂ/ÇŇŐĐĐÁ: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "ćÁĘĚ %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "ćÁĘĚ ÄĎĚÖĹÎ ÎÁŢÉÎÁÔŘÓŃ Ó \"/\": %s\n" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "Glob ÎĹ ŇÁÚŇĹŰÁŔÔÓŃ: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "ćÁĘĚ ÎĹ ÎÁĘÄĹÎ: %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ %%files %s: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "ÓÔŇĎËÁ: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "îĹ×ĹŇÎŮĘ ĆÁĘĚ %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ×ŮĚÎÉÔŘ %s: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "óÂĎĘ ×ĹÔ×ĚĹÎÉŃ %s: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s ÎĹ ŐÄÁĚĎÓŘ\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "ÚÁĐÉÓŘ ×ÓĹČ ÄÁÎÎŮČ × %s ÎĹ ŐÄÁĚÁÓŘ\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "đĎÉÓË %s (ÉÓĐĎĚŘÚŐŃ %s): ...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÎÁĘÔÉ %s:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "ďÂŇÁÂÁÔŮ×ÁŔÔÓŃ ĆÁĘĚŮ: %s-%s-%s\n" @@ -730,152 +730,152 @@ msgstr "getGidS: msgid "Could not canonicalize hostname: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ËÁÎĎÎÉÚÉŇĎ×ÁÔŘ ÉÍŃ ËĎÍĐŘŔÔĹŇÁ: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "ĎŰÉÂËÁ ÓĎÚÄÁÎÉŃ ÁŇČÉ×Á ÎÁ ĆÁĘĚĹ %s: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "ĎŰÉÂËÁ ÓĎÚÄÁÎÉŃ ÁŇČÉ×Á: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy: ĎŰÉÂËÁ ÚÁĐÉÓÉ: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy: ĎŰÉÂËÁ ŢÔĹÎÉŃ: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ PreIn: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ PreUn: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ PostIn: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ PostUn: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ VerifyScript: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ Trigger script: %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: ĎÔËŇŮÔÉĹ %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: ŢÔĹÎÉĹ %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: ĎŰÉÂËÁ Fseek: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s ÎĹ Ń×ĚŃĹÔÓŃ ĐÁËĹÔĎÍ RPM\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: ŢÉÔÁĹÔÓŃ ÚÁÇĎĚĎ×ĎË ÉÚ %s\n" -#: build/pack.c:471 +#: build/pack.c:473 msgid "Unable to create immutable header region.\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĎÍĹÓÔÉÔŘ ÚÁÇĎĚĎ×ĎË × ÎĹŇĐĹŇŮ×ÎŐŔ ĎÂĚÁÓÔŘ ĐÁÍŃÔÉ.\n" -#: build/pack.c:490 +#: build/pack.c:492 msgid "Unable to write temp header\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ×ŇĹÍĹÎÎŮĘ ÚÁÇĎĚĎ×ĎË\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "îĹ×ĹŇÎŮĹ ÄÁÎÎŮĹ CSA\n" -#: build/pack.c:536 +#: build/pack.c:538 msgid "Unable to write final header\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ĎËĎÎŢÁÔĹĚŘÎŮĘ ÚÁÇĎĚĎ×ĎË\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 msgid "Unable to reload signature header.\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘ ÚÁÇĎĚĎ×ĎË ĐĎÄĐÉÓÉ.\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ĐÁËĹÔ: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĂĹĚŘ ĐĎÄĐÉÓÉ %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ ÚÁÇĎĚĎ×ĎË ÉÚ %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ÚÁÇĎĚĎ×ĎË × %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ ÓĎÄĹŇÖÉÍĎĹ ÉÚ %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ÓĎÄĹŇÖÉÍĎĹ × %s: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "úÁĐÉÓÁÎ: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ ÉÍŃ ĆÁĘĚÁ ÄĚŃ ĐÁËĹÔÁ %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ %s: %s\n" @@ -1386,17 +1386,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "ÉÓËÁÔŘ ÓÔŇĎËÉ I18N × ËÁÔÁĚĎÇĹ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "ÓÔŇĎËÁ %d: îĹ×ĹŇÎĎĹ ŢÉÓĚĎ: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "ÓÔŇĎËÁ %d: îĹ×ĹŇÎĎĹ ŢÉÓĚĎ no%s: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "ÓÔŇĎËÁ %d: îĹ×ĹŇÎĎĹ ŢÉÓĚĎ %s: %s\n" @@ -1442,70 +1442,70 @@ msgstr " msgid " failed - " msgstr "ÎĹ ŐÄÁĚĎÓŘ - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "ĐÁËĹÔ %s ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s YES (rpmrc provides)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s YES (rpmlib provides)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "ÎĹ×ĹŇÎŮĘ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s YES (db provides)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "ÎĹÔ ĐÁËĹÔĎ×\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) ÄĎÂÁ×ĚĹÎĎ × ËĹŰ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "îĺT" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "äá" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "ŐÄÁĚŃĹÔÓŃ %s-%s-%s \"%s\" ÉÚ ŐĐĎŇŃÄĎŢĹÎÎŮČ ÚÁ×ÉÓÉÍĎÓÔĹĘ.\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "========== ÚÁĐÉÓŘ ŐĐĎŇŃÄĎŢĹÎÎŮČ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1514,20 +1514,20 @@ msgstr "" "========== ÓĎŇÔÉŇĎ×ËÁ ĐÁËĹÔĎ× (ĎŢĹŇĹÄÎĎÓÔŘ, #predecessors, #succesors, " "ÇĚŐÂÉÎÁ)\n" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "========== ÔĎĚŘËĎ ĐĎÓĚĹÄĎ×ÁÔĹĚÉ (× ĐĎŇŃÄËĹ ĐŇĹÄÓÔÁ×ĚĹÎÉŃ)\n" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "ăéëě:\n" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "========== ĐŇĎÄĎĚÖĹÎÉĹ ŐĐĎŇŃÄĎŢĹÎÉŃ ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1576,47 +1576,47 @@ msgstr " msgid "file %s is on an unknown device\n" msgstr "ĆÁĘĚ %s - ÎÁ ÎĹÉÚ×ĹÓÔÎĎÍ ŐÓÔŇĎĘÓÔ×Ĺ\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= ëÁÔÁĚĎÇÉ, ËĎÔĎŇŮĹ ÎĹ ×ËĚŔŢĹÎŮ × ĐÁËĹÔ Ń×ÎĎ:\n" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "ËÁÔÁĚĎÇ %s ÓĎÚÄÁÎ Ó ĐŇÁ×ÁÍÉ ÄĎÓÔŐĐÁ %04o.\n" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "ĆÁĘĚ ÁŇČÉ×Á %s ÎĹ ÎÁĘÄĹÎ × ÓĐÉÓËĹ ĆÁĘĚĎ× ÚÁÇĎĚĎ×ËÁ\n" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s ÓĎČŇÁÎĹÎ ËÁË %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: ËÁÔÁĚĎÇ ÎĹ ĐŐÓÔ\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ĎŰÉÂËÁ ŐÄÁĚĹÎÉŃ ËÁÔÁĚĎÇÁ %s: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s ÓĎÚÄÁÎ ËÁË %s\n" @@ -2093,301 +2093,301 @@ msgid "generate signature" msgstr "ÇĹÎĹŇÉŇĎ×ÁÔŘ ĐĎÄĐÉÓŘ" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "ĐÁËĹÔ %s - ÄĚŃ ÄŇŐÇĎĘ ÁŇČÉÔĹËÔŐŇŮ" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "ĐÁËĹÔ %s - ÄĚŃ ÄŇŐÇĎĘ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "ĐÁËĹÔ %s ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "ĐŐÔŘ %s × ĐÁËĹÔĹ %s - ÎĹ ĐĹŇĹÍĹÝÁĹÍŮĘ" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "ËĎÎĆĚÉËÔ ĆÁĘĚÁ %s ĐŇÉ ĐĎĐŮÔËÁČ ŐÓÔÁÎĎ×ËÉ %s É %s" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "ĆÁĘĚ %s ÉÚ ŐÓÔÁÎĎ×ĚĹÎÎĎÇĎ ĐÁËĹÔÁ %s ËĎÎĆĚÉËÔŐĹÔ Ó ĆÁĘĚĎÍ ÉÚ ĐÁËĹÔÁ %s" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "ĐÁËĹÔ %s (ËĎÔĎŇŮĘ ÎĎ×ĹĹ, ŢĹÍ %s) ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "ÄĚŃ ŐÓÔÁÎĎ×ËÉ ĐÁËĹÔÁ %s ÎŐÖÎĎ %ld%cb ÎÁ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍĹ %s" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "ÄĚŃ ŐÓÔÁÎĎ×ËÉ ĐÁËĹÔÁ %s ÎŐÖÎĎ %ld inodes ÎÁ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍĹ %s" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "ĐÁËĹÔ %s pre-transaction syscall(s): %s: ĎŰÉÂËÁ: %s" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "ÎĹÉÚ×ĹÓÔÎÁŃ ĎŰÉÂËÁ %d ĐŇÉ ŇÁÂĎÔĹ Ó ĐÁËĹÔĎÍ %s" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " ËĎÎĆĚÉËÔŐĹÔ Ó %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " ÎŐÖĹÎ ÄĚŃ %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "ôÉĐ ÄÁÎÎŮČ %d ÎĹ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ %%%s %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐÉÓÁÔŘ × %%%s %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "ĎÂÎÁŇŐÖĹÎ Ä×ĎÉŢÎŮĘ ĐÁËĹÔ ×ÍĹÓÔĎ ĎÖÉÄÁĹÍĎÇĎ ÉÓČĎÄÎĎÇĎ\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "ÉÓČĎÄÎŮĘ ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: ×ŮĐĎĚÎŃĹÔÓŃ ÓĂĹÎÁŇÉĘ %s (ĹÓĚÉ ĹÓÔŘ)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "ĎŰÉÂËÁ ×ŮĐĎĚÎĹÎÉŃ ÓĂĹÎÁŇÉŃ %s ÉÚ %s-%s-%s, waitpid() ×ĎÚ×ŇÁÔÉĚ %s\n" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "ĎŰÉÂËÁ ×ŮĐĎĚÎĹÎÉŃ ÓĂĹÎÁŇÉŃ %s ÉÚ %s-%s-%s, ËĎÄ ×ĎÚ×ŇÁÔÁ %d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s ÓĎÄĹŇÖÉÔ %d ĆÁĘĚĎ×, test = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: ĎŰÉÂËÁ ÓĂĹÎÁŇÉŃ %s (%d), %s-%s-%s ĐŇĎĐŐÓËÁĹÔÓŃ\n" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ - ÉÓĐĎĚŘÚŐĹÔÓŃ root\n" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "ÇŇŐĐĐÁ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ - ÉÓĐĎĚŘÚŐĹÔÓŃ root\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "ŇÁÓĐÁËĎ×ËÁ ÁŇČÉ×Á ÎĹ ŐÄÁĚÁÓŘ%s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " ÎÁ ĆÁĘĚĹ " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ĎŰÉÂËÁ ÎÁ ĆÁĘĚĹ %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, c-format msgid "%s failed: %s\n" msgstr "%s ÎĹ ŐÄÁĚĎÓŘ: %s\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "ĎŰÉÂËÁ × ĆĎŇÍÁÔĹ: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(ÎĹ ÓĎÄĹŇÖÉÔ ĆÁĘĚĎ×)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "ÎĎŇÍÁĚŘÎŮĘ " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "ÚÁÍĹÎĹÎÎŮĘ " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "ÎĹ ŐÓÔÁÎĎ×ĚĹÎ " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "ÓĹÔĹ×ĎĘ " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(ÎĹÉÚ×. %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(ÓĎÓÔ. ÎĹÔ) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ÓĐÉÓËĎ× ÎÉ ČĎÚŃĹ× ĆÁĘĚĎ×, ÎÉ ÉČ ID\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÚÁĐŇĎÓÉÔŘ %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "ĎŰÉÂËÁ ÚÁĐŇĎÓÁ %s\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "ÚÁĐŇĎÓŮ Ë ÉÓČĎÄÎŮÍ ĐÁËĹÔÁÍ × ÓÔÁŇĎÍ ĆĎŇÍÁÔĹ ÎĹ ĐĎÄÄĹŇÖÉ×ÁŔÔÓŃ\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: ĎŰÉÂËÁ ŢÔĹÎÉŃ ÓĐÉÓËÁ ĆÁĘĚĎ×: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "ÚÁĐŇĎÓ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ %s ÎĹ ŐÄÁĚÓŃ, ÎĹ×ĎÚÍĎÖÎĎ ŇÁÚĎÂŇÁÔŘ ĆÁĘĚ\n" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "ÎĹÔ ĐÁËĹÔĎ×\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "ÇŇŐĐĐÁ %s ÎĹ ÓĎÄĹŇÖÉÔ ÎÉËÁËÉČ ĐÁËĹÔĎ×\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ×Ú×ĎÄÉÔ ÔŇÉÇÇĹŇ %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢĹÓÔŘ %s: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ×Ú×ĎÄÉÔ ÔŇÉÇÇĹŇ %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ÔŇĹÂŐĹÔ %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ĐŇĹÄĎÓÔÁ×ĚŃĹÔ %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "ĆÁĘĚ %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "ĆÁĘĚ %s ÎĹ ĐŇÉÎÁÄĚĹÖÉÔ ÎÉ ĎÄÎĎÍŐ ÉÚ ĐÁËĹÔĎ×\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "ÎĹ×ĹŇÎŮĘ ÎĎÍĹŇ ĐÁËĹÔÁ: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "ÎĎÍĹŇ ÚÁĐÉÓÉ ĐÁËĹÔÁ: %u\n" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ ÚÁĐÉÓŘ %u\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "ĐÁËĹÔ %s ÎĹ ŐÓÔÁÎĎ×ĚĹÎ\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "ÎĹ×ĹŇÎŮĘ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s YES (db provides)\n" @@ -2481,89 +2481,89 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "đĎÄÇĎÔĎ×ËÁ..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "đĎÄÇĎÔĎ×ËÁ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "úÁÇŇŐÖÁĹÔÓŃ %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... ËÁË %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s ĐŇĎĐŐÓËÁĹÔÓŃ - ĎŰÉÂËÁ ĐĹŇĹÄÁŢÉ - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "ĐÁËĹÔ %s - ÎĹ ĐĹŇĹÍĹÝÁĹÍŮĘ\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "ĎŰÉÂËÁ ŢÔĹÎÉŃ ÉÚ ĆÁĘĚÁ %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "ÄĚŃ ĆÁĘĚÁ %s ÎĹĎÂČĎÄÉÍÁ ÂĎĚĹĹ ÎĎ×ÁŃ ×ĹŇÓÉŃ RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s ÎĹ ÍĎÖĹÔ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎ\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "ÎÁĘÄĹÎĎ %d ÉÓČĎÄÎŮČ É %d ÂÉÎÁŇÎŮČ ĐÁËĹÔĎ×\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÚÁ×ÉÓÉÍĎÓÔÉ:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "ŐÓÔÁÎÁ×ĚÉ×ÁŔ ÂÉÎÁŇÎŮĹ ĐÁËĹÔŮ\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ %s: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ÚÁÄÁĹÔ ÎĹÓËĎĚŘËĎ ĐÁËĹÔĎ×\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "ŐÄÁĚĹÎÉĹ ÜÔÉČ ĐÁËĹÔĎ× ÎÁŇŐŰÉÔ ÚÁ×ÉÓÉÍĎÓÔÉ:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2673,171 +2673,171 @@ msgstr " msgid "cannot open Packages database in %s\n" msgstr "ÎĹ ÍĎÇŐ ĎÔËŇŮÔŘ ÂÁÚŐ ÄÁÎÎŮČ Packages × %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "ÎĹĎÂŮŢÎŮĘ ĆÁĘĚ -- ĐŇĎĐŐÓËÁŔ ĐŇĎ×ĹŇËŐ ŇÁÚÍĹŇÁ\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "ďÖÉÄÁĹÍŮĘ ŇÁÚÍĹŇ: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "ćÁËÔÉŢĹÓËÉĘ ŇÁÚÍĹŇ: %12d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "đĎÄĐÉÓÉ ÎĹÔ\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "óÔÁŇÁŃ ĐĎÄĐÉÓŘ PGP\n" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" "óÔÁŇÁŃ (ÔĎĚŘËĎ ÄĚŃ ×ÎŐÔŇĹÎÎĹÇĎ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ) ĐĎÄĐÉÓŘ! çÄĹ ×Ů üôď ×ÚŃĚÉ!?\n" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "đĎÄĐÉÓŘ: ŇÁÚÍĹŇ(%d)+ÚÁĐĎĚÎĹÎÉĹ(%d)\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ×ŮĚÎÉÔŘ %s: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "ĎŰÉÂËÁ pgp\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "ĎŰÉÂËÁ pgp ĐŇÉ ÚÁĐÉÓÉ ĐĎÄĐÉÓÉ\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "ňÁÚÍĹŇ ĐĎÄĐÉÓÉ PGP: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐŇĎŢĹÓÔŘ ĐĎÄĐÉÓŘ\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "đĎĚŐŢĹÎĎ %d ÂÁĘÔ ĐĎÄĐÉÓÉ PGP\n" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "ĎŰÉÂËÁ gpg\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "ĎŰÉÂËÁ gpg ĐŇÉ ÚÁĐÉÓÉ ĐĎÄĐÉÓÉ\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "ňÁÚÍĹŇ ĐĎÄĐÉÓÉ GPG: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "đĎĚŐŢĹÎĎ %d ÂÁĘÔ ĐĎÄĐÉÓÉ GPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "îĹ×ĹŇÎÁŃ ÓĐĹĂÉĆÉËÁĂÉŃ %%_signature × ÍÁËŇĎĆÁĘĚĹ\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "÷Ů ÄĎĚÖÎŮ ŐÓÔÁÎĎ×ÉÔŘ \"%%_gpg_name\" × ×ÁŰĹÍ ÍÁËŇĎĆÁĘĚĹ\n" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "÷Ů ÄĎĚÖÎŮ ŐÓÔÁÎĎ×ÉÔŘ \"%%_pgp_name\" × ×ÁŰĹÍ ÍÁËŇĎĆÁĘĚĹ\n" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "úÁÇĎĚĎ×ĎË ÓĚÉŰËĎÍ ×ĹĚÉË" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ĐŇĎĐŐÓÔÉÔŘ ×ÓĹ MD5-ĐĎÄĐÉÓÉ" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "đĎÄĐÉÓÉ ÎĹÔ\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "đĎÄĐÉÓŘ: ŇÁÚÍĹŇ(%d)+ÚÁĐĎĚÎĹÎÉĹ(%d)\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ĐŇĎĐŐÝĹÎ ÉÚ-ÚÁ ĆĚÁÇÁ missingok\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "ÉÓËĚŔŢÁĹÔÓŃ ËÁÔÁĚĎÇ %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "ĐĎĚŐŢĹÎÉĹ ÓĐÉÓËÁ ÓÍĎÎÔÉŇĎ×ÁÎÎŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "îĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÚÁ×ÉÓÉÍĎÓÔÉ ÄĚŃ %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: ÎĹĐŇÁ×ÉĚŘÎÁŃ ĐĎÄĐÉÓŘ ĎÂĚÁÓÔÉ ÚÁÇĎĚĎ×ËÁ ĐÁËĹÔÁ\n" diff --git a/po/sk.po b/po/sk.po index 4218f506d..c77b30ee1 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -9,54 +9,54 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "nevyriešené závislosti:\n" -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Nie je možné otvoriť spec súbor: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Otvorenie rúry pre tar zlyhalo: %s\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Nie je možné prečítať spec súbor z %s\n" -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Nie je možné premenovať %s na %s: %s\n" -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "nepodarilo sa zistiť stav %s: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Súbor nie je obyčajný súbor: %s\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s zrejme nie je RPM balík\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, fuzzy, c-format msgid "Building target platforms: %s\n" msgstr "predefinovať cieľovú platformu" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "vyhľadáva sa balík %s\n" @@ -206,141 +206,141 @@ msgstr "Program m msgid "Usage: %s {--help}\n" msgstr "použitie: rpm {--help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Namiesto nich použite -e alebo --erase.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "môže byť použitý iba jeden hlavný režim" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "naraz môže byť vykonaný jeden typ otázky alebo overenia" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "neočakávaný zdroj pre otázku" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "neočakávaný zdroj pre otázku" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "neočakávaný zdroj pre otázku" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath zadané pre operáciu nepoužívajúcu databázu" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "iba inštalácia, aktualizácia a odstránenie zdrojov môžu byť vynútené" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "súbory môžu byť presunuté iba počas inčtalácie balíka" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "može byť použitá iba jedna z volieb --prefix a --relocate" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate a --excludepath môžu byť použité iba počas inštalácie nových " "balíkov" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix môže byť použitý iba počas inštalácie nových balíkov" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argumenty pre --prefix musia začínať znakom /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) môže byť použitý iba počas inštalácie balíka" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "môže byť použitá iba jedna voľba z --excludedocs a --includedocs" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches môže byť použité iba počas odstránenia balíkov" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles môže byť použité iba počas inštalácie balíka" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb môže byť použité iba počas inštalácie a odstránenia balíka" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb môže byť použité iba počas inštalácie a odstránenia balíka" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb môže byť použité iba počas inštalácie a odstránenia balíka" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -349,7 +349,7 @@ msgstr "" "--nodeps môže byť použité iba počas inštalácie, odstránenia alebo overenia " "balíka" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -357,7 +357,7 @@ msgstr "" "--test môže byť použité iba počas inštalácie, odstránenia alebo zostavenia " "balíka" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,87 +365,87 @@ msgstr "" "--root (-r) môže byť použité iba počas inštalácie a odstránenia balíka, " "otázky alebo znovuzostavenia databázy" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenty pre --root (-r) musia začínať znakom /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "nie je možné pracovať so súborom %s\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp nebolo nájdené: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Kontrola hesla zlyhala\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Heslo je v poriadku.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Chybná špecifikácia %%_signature v makro-súbore.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign môže byť použíté iba počas zostavenia balíka" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "vykonanie zlyhalo\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "neboli zadané žiadne balíky pre znovuzostavenie" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "neboli zadané žiadne spec-súbory pre zostavenie" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "neboli zadané žiadne tar-súbory pre zostavenie" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "neboli zadané žiadne balíky na podpis" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "neboli zadané žiadne balíky pre inštaláciu" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "neboli zadané žiadne argumenty pre otázku" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "neboli zadané žiadne argumenty pre overenie" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "neočakávané argumenty pre --querytags" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "neboli zadané žiadne argumenty pre otázku" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Nie je možné otvoriť dočasný súbor" @@ -533,180 +533,180 @@ msgstr "&& a || nie s msgid "syntax error in expression\n" msgstr "chyba syntaxe vo výraze" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "chyba PREKROČENIA ČASU: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "chýbajúce %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "chýbajúca ':' na %s:%d" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "Chybný %s prvok: %s" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "chýbajúce %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Chybná %s() syntax: %s" -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Chybná špecifikácia práv %s(): %s" -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Chybná špecifikácia práv adresára %s(): %s" -#: build/files.c:756 +#: build/files.c:759 #, fuzzy, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Iba jeden záznam v %%lang(): %s" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Iba jeden záznam v %%lang(): %s" -#: build/files.c:924 +#: build/files.c:927 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "Dosiahnutý limit pre %%docdir" -#: build/files.c:930 +#: build/files.c:933 #, fuzzy, c-format msgid "Only one arg for %%docdir\n" msgstr "Iba jeden argument pre %%docdir" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Dva súbory na riadku: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Súbory musia začínať znakom \"/\": %s" -#: build/files.c:986 +#: build/files.c:989 #, fuzzy, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Nie je možné miešať špeciálne %%doc s inými formami: %s" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Súbor zadaný dvakrát: %s." -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Súbor nesúhlasí s prefixom (%s): %s." -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Súbor nebol nájdený: %s" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Chybný vlastník/skupina: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Súbor %4d: 0%o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Súbor potrebuje na začiatku \"/\": %s" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "riadok %d: V %s sú vyžadované verzie: %s" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Súbor nebol nájdený: %s" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "chybe: nie je možné otvoriť %%files súbor: %s" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "riadok: %s" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "súbor %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Nie je možné spustiť %s" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Nie je možné vytvoriť proces %s" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s zlyhalo" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "nepodarilo sa zapísať všetky dáta do %s" -#: build/files.c:2521 +#: build/files.c:2524 #, fuzzy, c-format msgid "Finding %s: (using %s)...\n" msgstr "Zisťujú sa požadované vlastnosti...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "Nepodarilo sa zistiť poskytované vlastnosti" -#: build/files.c:2686 +#: build/files.c:2689 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Spracovávajú sa súbory: %s\n" @@ -740,157 +740,157 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "Nie je možné kanonizovať názov počítača: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy zápis zlyhal: %s" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy čítanie zlyhalo: %s" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Nie je možné otvoriť PreIn súbor: %s" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Nie je možné otvoriť PreUn súbor: %s" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Nie je možné otvoriť PostIn súbor: %s" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Nie je možné otvoriť PostUn súbor: %s" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Nie je možné otvoriť VerifyScript súbor: %s" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Nie je možné otvoriť Trigger skriptový súbor: %s" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: otvorenie %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: čítanie %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s nie je RPM balík\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: čítanie hlavičky %s\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nie je možné prečítať ikonu: %s" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nie je možné zapísať %s" -#: build/pack.c:500 +#: build/pack.c:502 #, fuzzy msgid "Bad CSA data\n" msgstr "Chybné CSA dáta" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Nie je možné zapísať %s" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nie je možné prečítať ikonu: %s" -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "Otvorenie %s zlyhalo\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie je možné zapísať balík: %s" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nie je prečítať sigtarget: %s" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nie je možné prečítať ikonu: %s" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nie je možné zapísať balík: %s" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nie je možné prečítať ikonu: %s" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nie je možné zapísať balík: %s" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Zapísané: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Nie je možné vytvoriť meno výstupného súboru pre balík %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "nie je možné zapísať do %s: " @@ -1407,17 +1407,17 @@ msgstr "predefinova msgid "lookup i18N strings in specfile catalog" msgstr "pre preklad reťazcov použiť katalóg správ spec-súborov" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "riadok %d: Chybné číslo: %s" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "riadok %d: Chybné no%s číslo: %d" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "riadok %d: Chybné %s číslo: %s\n" @@ -1464,90 +1464,90 @@ msgstr "" msgid " failed - " msgstr " zlyhalo - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "balík %s nie je nainštalovaný\n" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "chybný stav súboru: %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "Poskytuje:" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "nájdených %d balíkov\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 #, fuzzy msgid "NO " msgstr "NIE JE V PORIADKU" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "odstraňuje sa index skupín\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1596,46 +1596,46 @@ msgstr "nepodarilo sa otvori msgid "file %s is on an unknown device\n" msgstr "súbor %s sa nachádza na neznámom zariadení" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "riadok %d: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varovanie: %s uchovaný ako %s" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nie je možné odstrániť %s - adresár nie je prázdny" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s zlyhalo: %s" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varovanie: %s vytvorené ako %s" @@ -2140,305 +2140,305 @@ msgid "generate signature" msgstr "vytvoriť PGP/GPG podpis" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "balík %s nie je nainštalovaný\n" -#: lib/problems.c:240 +#: lib/problems.c:241 #, c-format msgid "package %s is intended for a %s operating system" msgstr "" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "balík %s nie je nainštalovaný\n" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "balík %s nie je nainštalovaný\n" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "balík %s nie je nainštalovaný\n" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "požiadavka balíka %s nie je uspokojená: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "požiadavka balíka %s nie je uspokojená: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " koliduje s %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " je vyžadované %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Typ údajov %d nie je podorovaný\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "nie je možné zapísať do %s: " -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "nie je možné zapísať do %s: " -#: lib/psm.c:483 +#: lib/psm.c:481 #, fuzzy msgid "source package expected, binary found\n" msgstr "očakávaný zdrojový balík, nájdený binárny" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "zdrojový balík neobsahuje žiadny .spec súbor" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "vykonávajú sa poinštalačné skripty (ak existujú)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "balík: %s-%s-%s test súborov = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "používateľ %s neexistuje - použije sa root" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - použije sa root" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalenie archívu zlyhalo%s%s: %s" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " pre súbor " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nepodarilo sa otvoriť %s: %s" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s zlyhalo" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "chyba formátu: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(neobsahuje žiadne súbory)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normálny " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "nahradený " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "neinštalovaný " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "zdieľaný " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(neznámy %d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(žiadny stav) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "zmazanie %s zlyhalo: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "otázka na %s zlyhala\n" -#: lib/query.c:638 +#: lib/query.c:639 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:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: lib/query.c:708 +#: lib/query.c:709 #, 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:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "nájdených %d balíkov\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje žiadne balíky\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "žiadny z balíkov nespúšťa %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Nie je možné prečítať %s: %s." -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "žiadny z balíkov nespúšťa %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "žiadny z balíkov nevyžaduje %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "žiadny z balíkov neposkytuje %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "súbor %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, 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:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "chybné číslo balíku: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "požaduje sa záznam číslo %d\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "záznam %d nie je možné prečítať\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "balík %s nie je nainštalovaný\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "chybný stav súboru: %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "Poskytuje:" @@ -2531,90 +2531,90 @@ msgstr " rpm {--version}" msgid "package %s has unsatisfied %s: %s\n" msgstr "požiadavka balíka %s nie je uspokojená: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "neboli zadané žiadne balíky pre inštaláciu" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Prenáša sa %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "... ako %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s vynechané - prenos zlyhal - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "balík %s nie je nainštalovaný\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "chyba pri vytváraní dočasného súboru %s" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie je možné nainštalovať\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "nájdených %d zdrojových a %d binárnych balíkov\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "nevyriešené závislosti:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "inštalujú sa binárne balíky\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "nie je možné otvoriť súbor %s: %s" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" špecifikuje viac balíkov\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "odstránenie týchto balíkov by porušilo závislosti:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "nie je možné otvoriť %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Inštaluje sa %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2724,176 +2724,176 @@ msgstr "Nie je mo msgid "cannot open Packages database in %s\n" msgstr "nie je možné otvoriť %s/packages.rpm\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "nejde o bežný súbor - kontrola veľkosti vynechaná\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "Veľkosť podpisu: %d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Podpis nie je k dispozícii\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Starý PGP podpis\n" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starý (iba interný) podpis! Ako ste sa k tomu dostali?!" -#: lib/signature.c:225 +#: lib/signature.c:226 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Veľkosť podpisu: %d\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nie je možné spustiť %s" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "pgp zlyhalo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp sa nepodarilo zapísať podpis" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "Veľkosť PGP podpisu: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "nie je možné prečítať podpis" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prečítaný PGP podpis obsahuje %d bajtov\n" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "gpg zlyhalo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg sa nepodarilo zapísať podpis" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "Veľkosť GPG podpisu: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Prečítaný GPG podpis obsahuje %d bajtov\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Chybná špecifikácia %%_signature v makro-súbore.\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastaviť \"%%gpg_name\" vo vašom makro-súbore" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastaviť \"%%pgp_name\" vo vašom makro-súbore" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Priveľká hlavička" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "vynechať akékoľvek MD5 podpisy" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Podpis nie je k dispozícii\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Doplnenie podpisu: %d\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "chýbajúce %s\n" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nevyriešené závislosti pre %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/sl.po b/po/sl.po index c08c8f326..e21b451e2 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.235 2002/04/10 20:01:04 jbj Exp $ +# $Id: sl.po,v 1.236 2002/04/11 16:55:27 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -14,53 +14,53 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "izdelava soodvisnosti je bila neuspešna:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Datoteke s specifikacijami %s ni možno odpreti: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Povezava s programom tar je bila neuspešna: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Neuspešno branje datoteke s specifikacijami iz %s" -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Preimenovanje %s v %s je bilo neuspešno: %m" -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "status %s ni na voljo: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Datoteka ni običajna datoteka: %s\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Ne kaže, da je %s datoteka s specifikacijami." #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Izgradnja za ciljna strojna okolja: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Izgradnja za ciljni sistem %s\n" @@ -210,137 +210,137 @@ msgstr "Ta program je dovoljeno razpe msgid "Usage: %s {--help}\n" msgstr "Uporaba: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Namesto njiju uporabite -e ali --erase.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "izbran sme biti le en glavni način" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "samo en tip poizvedbe/preverjanja je možen naenkrat" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "nepričakovane zastavice pri poizvedbi" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "nepričakovana oblika poizvedbe" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "nepričakovan izvor poizvedbe" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath podan, vendar, čeprav nepotreben" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "datoteke smemo premakniti samo med namestitvijo paketa" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "izbiri --prefix in --relocate se medsebojno izključujeta" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "izbiri --relocate in --excludepath se lahko uporabi le pri namestitvi" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix se sme uporabiti le pri namestitvi" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argumenti izbire --prefix se morajo začeti z /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) sme biti podan le ob namestitvi paketa" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent sme biti podan le ob namestitvi paketa" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles sme biti podan le ob namestitvi paketa" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs sme biti podan le ob namestitvi paketa" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs sme biti podatn le ob namestitvi paketa" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs sme biti podan le ob namestitvi paketa" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "izbiri --excludedocs in --includedocs se medsebojno izključujeta" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch sme biti podan le ob namestitvi paketa" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos sme podan le ob namestitvi paketa" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize sme biti podan le ob namestitvi paketa" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches sme biti podan le ob odstranitvi paketa" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles sme biti podati le ob namestitvi paketa" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -348,14 +348,14 @@ msgstr "" "--nodeps sme biti podan le ob izgradnji, vnovični izgradnji, prevajanju, " "namestitvi, odstranitvi ali preverjanju paketa" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test sme biti podan le ob namestitvi, odstranitvi ali izgradnji paketa" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -363,87 +363,87 @@ msgstr "" "--root (-r) sme biti podan le ob namestitvi, odstranitvi poizvedbi ali " "vnovični izgradnji paketa" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenti izbire --root (-r) se morajo začeti z /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "ni datotek, ki bi jih lahko podpisal\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "dostop do datoteke %s ni možen\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp manjka: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Vnesite pristopno geslo: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Preverjanje pristopnega gesla neuspešno\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Pristopno geslo je pravo.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign sme biti podan le ob izgradnji paketa" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "izvajanje je bilo neuspešno\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "paketi za vnovično izgradnjo niso navedeni" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "datoteka spec za izgradnjo manjka" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "arhiv tar za izgradnjo manjka" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "paketi katere bi bilo potrebno podpisati niso navedeni" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "paketi katere bi bilo potrebno namestiti niso navedeni" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "argumenti za poizvedbo niso podani" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "argumenti za preverjanje niso podani" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "nepričakovani argumenti za --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "argumenti za poizvedbo niso podani" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Začasne datoteke ni možno odpreti" @@ -531,180 +531,180 @@ msgstr "&& in || nista podprta za nize" msgid "syntax error in expression\n" msgstr "napaka v sklanji izraza" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK neuspešen: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "Manjkajoči ,(` v %s %s" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "Manjkajoči ,)` v %s(%s" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "Neveljaven žeton %s: %s" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Manjkajoči ,(` v %s %s" -#: build/files.c:545 +#: build/files.c:548 #, fuzzy, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Neprazen znak sledi %s(): %s" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Nepravilna skladnja: %s(%s)" -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Nepravilno določilo načina: %s(%s)" -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Nepravilno določilo načina imenika: %s(%s)" -#: build/files.c:756 +#: build/files.c:759 #, fuzzy, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Nenavadna dolžina za locale: \"%.s\" pri %%lang(%s)" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Podvojeni locale %.*s za %%lang(%s)" -#: build/files.c:924 +#: build/files.c:927 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "Dosegli smo omejitev za %%docdir" -#: build/files.c:930 +#: build/files.c:933 #, fuzzy, c-format msgid "Only one arg for %%docdir\n" msgstr "Za %%docdir je podan samo en argument" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Dve datoteki v eni vrstici: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Ime datoteke se mora začeti z \"/\": %s" -#: build/files.c:986 +#: build/files.c:989 #, fuzzy, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Posebnih %%doc ni možno mešati z ostalimi oblikami: %s" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Datoteka je navedena dvakrat: %s" -#: build/files.c:1281 +#: build/files.c:1284 #, fuzzy, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Simbolna povezava kaže na BuildRoot: %s -> %s" -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Datoteka se ne ujema s predpono (%s): %s" -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Datoteke ni mogoče najti: %s" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Neobstoječ lastnik/skupina: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Datoteka: %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Datoteki manjka uvodni \"/\": %s" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "vrstica %d: Različica ni dovoljena: %s" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Datoteke ni možno najti z razširitvijo metaznakov v imenu: %s" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Datoteke %s iz %%files ni možno odpreti: %s" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "vrstica: %s" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "Poškodovana datoteka: %s: %s" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Ni možno izvesti %s: %s" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Vejitev %s ni možna: %s" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s neuspešen" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "pisanje podatkov v %s je bilo neuspešno" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Iskanje %s: (z uporabo %s)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "Neuspešno iskanje %s:" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Obdeloavnje datotek: %s-%s-%s\n" @@ -738,157 +738,157 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "Iskanje kanoničnega imena gostitelja je bilo neuspešno: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspešno: %s" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspešno: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "pisanje cpio_copy neuspešno: %s" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "branje cpio_copy neuspešno: %s" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Datoteke PreIn ni možno odpreti: %s" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Datoteke PreUn ni možno odpreti: %s" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Datoteke PostIn ni možno odpreti: %s" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Datoteke PostUn ni možno odpreti: %s" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Datoteke VerifyScript ni možno odpreti: %s" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Skriptne datoteke Trigger ni možno odpreti: %s" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: odpiranje %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: branje %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: branje Fread je bilo neuspešno: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s ni paket tipa RPM\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: branje glave %s\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Ikone %s ni možno prebrati: %s" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Ni možno zapisati paketa %s: %s" -#: build/pack.c:500 +#: build/pack.c:502 #, fuzzy msgid "Bad CSA data\n" msgstr "Poškodovani podatki CSA" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Ni možno zapisati paketa %s: %s" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Izdelujemo podpis: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Ikone %s ni možno prebrati: %s" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "Ni možno odpreti %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ni možno zapisati paketa: %s" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Ciljnega podpisa %s ni možno odpreti: %s" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Ikone %s ni možno prebrati: %s" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Ni možno zapisati paketa %s: %s" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Ikone %s ni možno prebrati: %s" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Ni možno zapisati paketa %s: %s" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Neuspešno ustvarjanje izhodne datoteke za paket %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "ni možno ustvariti %s: %s\n" @@ -1408,17 +1408,17 @@ msgstr "brez upo msgid "lookup i18N strings in specfile catalog" msgstr "upoštevanje internacionalizirana sporočila v katalogu spec" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "vrstica %d: Napačno število: %s" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "vrstica %d: Napačno število no%s: %d" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "vrstica %d: Napačno število %s: %s\n" @@ -1465,90 +1465,90 @@ msgstr "" msgid " failed - " msgstr " neuspešno - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "paket %s-%s-%s je že nameščen" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s DA (rpmrc ponudbe)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s DA (rpmlib ponudbe)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "poškodovana zbirka podatkov %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s DA (db ponudbe)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "ni paketov\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 #, fuzzy msgid "NO " msgstr "NI DOBRO" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "odstranjujemo seznam skupin\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1597,46 +1597,46 @@ msgstr "neuspe msgid "file %s is on an unknown device\n" msgstr "datoteka %s se nahaja na neznani napravi" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "vrstica %d: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "opozorilo: %s shranjen kot %s" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ni možno odstraniti %s - imenik ni prazen" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "odstranitev imenika %s je bila neuspešna: %s" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspešno: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "opozorilo: %s ustvarjen kot %s" @@ -2138,306 +2138,306 @@ msgid "generate signature" msgstr "izdelava podpisa PGP/GPG" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "paket %s-%s-%s je za drug tip arhitekture" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "paket %s-%s-%s je za drug operacijski sistem" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "paket %s-%s-%s je že nameščen" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "paketa %s ni možno prestaviti\n" -#: lib/problems.c:255 +#: lib/problems.c:256 #, fuzzy, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "datoteka %s je v sporu med poskusom namestitve %s in %s" -#: lib/problems.c:260 +#: lib/problems.c:261 #, fuzzy, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "" "datoteka %s nameščena z %s-%s-%s je v sporu z datoteko iz paketa %s-%s-%s" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "paket %s-%s-%s (ki je novejši kot %s-%s-%s) je že nameščen" -#: lib/problems.c:270 +#: lib/problems.c:271 #, fuzzy, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datotečnem sistemu %s" -#: lib/problems.c:280 +#: lib/problems.c:281 #, fuzzy, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "paket %s pred-prenosljivih sistemskih klicov: %s ni uspelo: %s" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, fuzzy, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " je v sporu z %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " potrebuje %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Tip podatkov %d ni podprt\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "ni možno ustvariti %s: %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "pisanje na %s ni možno" -#: lib/psm.c:483 +#: lib/psm.c:481 #, fuzzy msgid "source package expected, binary found\n" msgstr "pričakovan je bil izvorni paket, najden binarni" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "izvorni paket ne vsebuje datoteke .spec" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "poganjanje ponamestitvenih skript (če obstajajo)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "skript se ni uspešno izvedel" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "skript se ni uspešno izvedel" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paket: %s-%s-%s datoteke test = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "uporabnik %s ne obstaja - uporabljam root" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s ne obstaja - uporabljam root" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "razširitev arhiva je bilo neuspešno%s%s: %s" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " za datoteko " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspešno odpiranje %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s neuspešen" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "napaka v obliki: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(ne vsebuje datotek)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normalno " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "nadomeščeno " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "ni nameščeno " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "omrežni " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(neznano %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(brez stanja) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "ni možno poizvedeti o %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspešno: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "poizvedba po %s je bila neuspešna\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "poizvedba po izvornih paketih v stari obliki ni možna\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: branje Fread je bilo neuspešno: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "poizvedba po datoteki spec. %s je bila neuspešna, razčlemba ni možna\n" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "ni paketov\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s ne vsebuje nobenega paketa\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "noben paket ne proži %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Neuspešno branje %s: %s." -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "noben paket ne proži %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "noben paket ne potrebuje %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "noben paket ne nudi %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "datoteka %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ni del nobenega paketa\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "neveljavna številka paketa: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "številka zapisa paketa: %d\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "zapisa %d ni možno prebrati\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paket %s ni nameščen\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "poškodovana zbirka podatkov %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s DA (db ponudbe)\n" @@ -2531,90 +2531,90 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "paketi za namestitev niso navedeni" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Prenašanje %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... kot %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "preskočeno - %s - prenos neuspešen - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "paketa %s ni možno premakniti\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "napaka pri branju iz datoteke %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "datoteka %s zahteva novejšo različico RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s ni možno namestiti\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "najdeno %d izvornih in %d binarnih paketov\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "neuspešne soodvisnosti:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "nameščanje binarnih paketov\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "ni možno odpreti datoteke %s: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" določa več paketov\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "ni možno odpreti %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Nameščanje %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2724,176 +2724,176 @@ msgstr "%s ni mo msgid "cannot open Packages database in %s\n" msgstr "zbirko podatkov paketov ni možno odpreti v %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "Dolž. podpisa : %d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Podpis manjka\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Stari podpis PGP\n" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?" -#: lib/signature.c:225 +#: lib/signature.c:226 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Dolž. podpisa : %d\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Ni možno izvesti %s: %s" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "pgp je bil neuspešen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp je bil neuspešen pri zapisu podpisa" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "Dolž. podpisa PGP: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "branje podpisa je bilo neuspešno" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prebrano %d bajtov podpisa PGP\n" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "gpg je bil neuspešen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg je boil neuspešen pri zapisu podpisa" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "Dolž. podpisa GnuPG: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Prebrano %d bajtov podpisa GnuPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Glava je predolga" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "preskoči vse podpise MD5" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Podpis manjka\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Dolž. polnila : %d\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s preskočen zaradi manjkajoče zastavice OK\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "izključevanje imenika %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "zbiranje seznama priklopljenih datotečnih sistemov.\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "manjka %s\n" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/sr.po b/po/sr.po index ec4dbadd2..7bd9145ea 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,58 +1,58 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" -#: build.c:36 +#: build.c:39 #, fuzzy msgid "failed build dependencies:\n" msgstr "loše međuzavisnosti:\n" -#: build.c:65 +#: build.c:71 #, fuzzy, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Ne mogu da otvorim %s za čitanje: %s" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "neuspelo otvaranje %s\n" #. Give up -#: build.c:164 +#: build.c:170 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Neuspelo čitanje %s: %s." -#: build.c:192 +#: build.c:198 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Neuspelo čitanje %s: %s." -#: build.c:232 +#: build.c:238 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "neuspelo otvaranje %s: %s" -#: build.c:237 +#: build.c:243 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s ne liči na RPM paket\n" -#: build.c:246 +#: build.c:252 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ne liči na RPM paket\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:322 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "greška potrage za paketom %s\n" @@ -201,141 +201,141 @@ msgstr "Mo msgid "Usage: %s {--help}\n" msgstr "korišćenje: {rpm --help}" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:598 +#: rpmqv.c:602 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Koristite -e ili --erase.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "samo jedan glavni režim može biti naveden" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "samo jedan tip upita/provere može biti urađen odjednom" -#: rpmqv.c:678 +#: rpmqv.c:682 #, fuzzy msgid "unexpected query flags" msgstr "neočekivan izvor upita" -#: rpmqv.c:681 +#: rpmqv.c:685 #, fuzzy msgid "unexpected query format" msgstr "neočekivan izvor upita" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "neočekivan izvor upita" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka" -#: rpmqv.c:731 +#: rpmqv.c:735 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "samo instalacija i ažuriranje mogu biti forsirane" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "datoteke mogu biti premeštene samo tokom instalacije paketa" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "samo jedno možete koristiti: --prefix ili --relocate" -#: rpmqv.c:739 +#: rpmqv.c:743 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate možete koristiti samo kad instalirate novi paket" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix možete koristiti samo kod instalacije novog paketa" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argumenti za --prefix moraju početi znakom /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) možete koristiti samo kod instalacije paketa" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent možete koristiti samo kod instalacije paketa" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles možete koristiti samo kod instalacije paketa" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs možete koristiti samo kod instalacije paketa" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludecocs možete koristiti samo kod instalacije paketa" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includecocs možete koristiti samo kod instalacije paketa" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "samo jedno možete da navedete: --excludedocs ili --includedocs" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch možete koristiti samo kod instalacije paketa" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos možete koristiti samo kod instalacije paketa" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos možete koristiti samo kod instalacije paketa" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches možete koristiti samo kod brisanja paketa" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles možete koristiti samo kod instalacije paketa" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb možete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:804 +#: rpmqv.c:808 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb možete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb možete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:813 +#: rpmqv.c:817 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -343,14 +343,14 @@ msgid "" msgstr "" "--nodeps možete koristiti samo kod instalacije, uklanjanja ili provere paketa" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test možete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -358,89 +358,89 @@ msgstr "" "--root (-r) možete navesti samo kod instalacije, uklanjanja, upita ili " "rekreiranja baze podataka" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenti za --root (-r) moraju početi znakom /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:864 +#: rpmqv.c:868 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmqv.c:883 +#: rpmqv.c:887 #, fuzzy msgid "pgp not found: " msgstr "Datoteka nije pronađena na serveru" -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Neuspela provera lozinke\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Lozinka je dobra.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign se može koristiti samo kod kreiranja paketa" -#: rpmqv.c:923 +#: rpmqv.c:927 #, fuzzy msgid "exec failed\n" msgstr "%s: Neuspelo otvaranje\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "nedosataje paket za rekreiranje" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "nedostaje specifikacije za kreiranje" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "nedostaju 'tar' datoteke za kreiranje" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "nedostaje paket za potpisivanje" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "nedostaje paket za instalaciju" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "nedostaju argumenti za upit" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "nedostaju argumenti za proveru" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "neočekivani argumenti za --querytags" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "nedostaju argumenti za upit" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Ne mogu da otvorim %s za čitanje: %s" @@ -521,180 +521,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "očekivan znak ? u izrazu" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "nedostaje { posle %" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "nedostaje ':' na %s:%d" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "pogrešan broj paketa: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "nedostaje { posle %" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:583 +#: build/files.c:586 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Neuspelo čitanje %s: %s." -#: build/files.c:593 +#: build/files.c:596 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Neuspelo čitanje %s: %s." -#: build/files.c:605 +#: build/files.c:608 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Neuspelo čitanje %s: %s." -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/files.c:973 +#: build/files.c:976 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "premeštanja moraju početi znakom '/'" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1137 +#: build/files.c:1140 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Neuspelo čitanje %s: %s." -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1523 +#: build/files.c:1526 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Neuspelo čitanje %s: %s." -#: build/files.c:1547 +#: build/files.c:1550 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Datoteka nije pronađena na serveru" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/files.c:1712 +#: build/files.c:1715 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "premeštanja moraju početi znakom '/'" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "paket %s nije naveden u %s" -#: build/files.c:1750 +#: build/files.c:1753 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Datoteka nije pronađena na serveru" -#: build/files.c:1812 +#: build/files.c:1815 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, fuzzy, c-format msgid "line: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/files.c:2198 +#: build/files.c:2201 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "neuspelo otvaranje %s: %s" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Ne mogu da izvršim PGP" -#: build/files.c:2277 +#: build/files.c:2280 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Ne mogu da pročitam 'sigtarget'" -#: build/files.c:2361 +#: build/files.c:2364 #, fuzzy, c-format msgid "%s failed\n" msgstr "PGP omanuo" -#: build/files.c:2365 +#: build/files.c:2368 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "neuspelo kreiranje %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "neuspelo kreiranje %s\n" -#: build/files.c:2686 +#: build/files.c:2689 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "neuspelo otvaranje %s: %s" @@ -728,156 +728,156 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:81 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/pack.c:82 +#: build/pack.c:84 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/pack.c:104 +#: build/pack.c:106 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "neuspelo čitanje: %s (%d)" -#: build/pack.c:111 +#: build/pack.c:113 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "neuspelo čitanje: %s (%d)" -#: build/pack.c:214 +#: build/pack.c:216 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "greška: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "Neuspelo čitanje %s: %s." -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: build/pack.c:333 +#: build/pack.c:335 #, fuzzy, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "greška: čini se da %s nije RPM paket\n" -#: build/pack.c:342 +#: build/pack.c:344 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "greška kod uzimanja sloga %s iz %s" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:556 +#: build/pack.c:558 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "napravi PGP potpis" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:582 +#: build/pack.c:584 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:633 +#: build/pack.c:635 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:644 +#: build/pack.c:646 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:658 +#: build/pack.c:660 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:668 +#: build/pack.c:670 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:674 +#: build/pack.c:676 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Ne mogu da upišem %s" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:783 +#: build/pack.c:785 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -1393,17 +1393,17 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:233 +#: build/spec.c:235 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "pogrešan broj paketa: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "pogrešan broj paketa: %s\n" -#: build/spec.c:300 +#: build/spec.c:302 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "pogrešan broj paketa: %s\n" @@ -1453,89 +1453,89 @@ msgstr "" msgid " failed - " msgstr "PGP omanuo" -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "paket %s nije instaliran\n" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "neuspelo otvaranje %s: %s" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "upit nad svim paketima" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "greška uklanjanja sloga %s u %s" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1584,46 +1584,46 @@ msgstr "neuspelo otvaranje %s: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 +#: lib/fsm.c:313 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ne mogu da uklonim %s - direktorijum nije prazan" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "neuspela komanda rmdir %s: %s" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -2133,305 +2133,305 @@ msgid "generate signature" msgstr "napravi PGP potpis" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "paket %s-%s-%s sadrži deljene datoteke\n" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "paket %s-%s-%s sadrži deljene datoteke\n" -#: lib/problems.c:245 +#: lib/problems.c:246 #, fuzzy, c-format msgid "package %s is already installed" msgstr "paket %s nije instaliran\n" -#: lib/problems.c:250 +#: lib/problems.c:251 #, fuzzy, c-format msgid "path %s in package %s is not relocateable" msgstr "paket %s nije instaliran\n" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "" -#: lib/problems.c:260 +#: lib/problems.c:261 #, fuzzy, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr " se sudara sa %s-%s-%s\n" -#: lib/problems.c:265 +#: lib/problems.c:266 #, fuzzy, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "paket %s-%s-%s sadrži deljene datoteke\n" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -#: lib/problems.c:285 +#: lib/problems.c:286 #, fuzzy, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "paket %s-%s-%s sadrži deljene datoteke\n" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " se sudara sa %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " je potreban paketu %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#: lib/psm.c:442 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:450 +#: lib/psm.c:448 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:599 +#: lib/psm.c:597 #, fuzzy msgid "source package contains no .spec file\n" msgstr "upit nad paketom koji ima " -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "nemoj izvršiti nijednu fazu" -#: lib/psm.c:875 +#: lib/psm.c:882 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "neuspelo izvršavanje skripta" -#: lib/psm.c:882 +#: lib/psm.c:889 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "neuspelo izvršavanje skripta" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paket %s-%s-%s sadrži deljene datoteke\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s ne sadrži nijedan paket\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "PGP omanuo" -#: lib/query.c:124 +#: lib/query.c:125 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "greška u formatu: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(nema datoteka)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "" -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "" -#: lib/query.c:287 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "paket %s nije instaliran\n" -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "" -#: lib/query.c:293 +#: lib/query.c:294 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(nepoznat tip)" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "" -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paket nema imena" -#: lib/query.c:462 +#: lib/query.c:463 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "greška: ne mogu da otvorim %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:638 +#: lib/query.c:639 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:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/query.c:708 +#: lib/query.c:709 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:729 +#: lib/query.c:730 #, fuzzy msgid "no packages\n" msgstr "upit nad svim paketima" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s ne sadrži nijedan paket\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Neuspelo čitanje %s: %s." -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "nijedan paket ne zahteva %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "nijedan paket ne obezbeđuje %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "pogrešan broj paketa: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "pogrešan broj paketa: %s\n" -#: lib/query.c:951 +#: lib/query.c:952 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "ne mogu da pročitam slog %d\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "datoteka %s ne pripada nijednom paketu\n" @@ -2525,91 +2525,91 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 #, fuzzy msgid "Preparing packages for installation..." msgstr "nedostaje paket za instalaciju" -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Pribavljam %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "paket %s nije instaliran\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "greška: %s se ne može instalirati\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "grupa %s ne sadrži nijedan paket\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "loše međuzavisnosti:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 #, fuzzy msgid "installing binary packages\n" msgstr "instaliraj paket" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" određuje više paketa\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "uklanjanje oviha paketa će narušiti zavisnosti:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "greška: ne mogu da otvorim %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Instaliram %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, fuzzy, c-format msgid "rollback %d packages to %s" msgstr "neodstaje paket za deinstalaciju" @@ -2719,177 +2719,177 @@ msgstr "Ne mogu da otvorim %s za msgid "cannot open Packages database in %s\n" msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:157 #, fuzzy msgid "No signature\n" msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/signature.c:160 +#: lib/signature.c:161 #, fuzzy msgid "Old PGP signature\n" msgstr "napravi PGP potpis" -#: lib/signature.c:171 +#: lib/signature.c:172 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stari (interni) potpis! Odakle vam!?" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Ne mogu da izvršim PGP" -#: lib/signature.c:320 +#: lib/signature.c:321 #, fuzzy msgid "pgp failed\n" msgstr "PGP omanuo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 #, fuzzy msgid "pgp failed to write signature\n" msgstr "PGP nije uspeo da zapiše potpis" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 #, fuzzy msgid "unable to read the signature\n" msgstr "ne mogu da pročitam potpis" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:418 +#: lib/signature.c:419 #, fuzzy msgid "gpg failed\n" msgstr "PGP omanuo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 #, fuzzy msgid "gpg failed to write signature\n" msgstr "PGP nije uspeo da zapiše potpis" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:736 +#: lib/signature.c:737 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u vašoj rpmrc datoteci" -#: lib/signature.c:749 +#: lib/signature.c:750 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u vašoj rpmrc datoteci" -#: lib/signature.c:793 +#: lib/signature.c:794 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "preskoči sve MD5 potpise" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/verify.c:323 +#: lib/verify.c:326 #, fuzzy, c-format msgid "missing %s" msgstr "nedostaje { posle %" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nezadovoljene međuzavisnosti za %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index a660b3594..2b0cdf0cb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-09-12 14:18+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -9,53 +9,53 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "ouppfyllda byggberoenden:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "Kan inte öppna specfilen %s: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunde inte öppna \"tar\"-rör: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Kunde inte läsa specfil frĺn %s\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Kunde inte byta namn pĺ %s till %s: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunde inte ta status pĺ %s: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "Filen %s är inte en vanlig fil.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "Filen %s tycks inte vara en specfil.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Bygger mĺlplattformar: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "Bygger för mĺlet %s\n" @@ -202,123 +202,123 @@ msgstr "Det h msgid "Usage: %s {--help}\n" msgstr "Användning: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "Flaggan --rcfile har tagits bort.\n" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "Använd \"--macros \" istället.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Internt fel i argumenthantering (%d) :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "enbart ett huvudläge kan anges" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "endast en typ av frĺga/verifiering kan utföras ĺt gĺngen" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "oväntade frĺgeflaggor" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "oväntat frĺgeformat" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "oväntad frĺgekälla" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath angivet för en operation som inte använder nĺgon databas" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "enbart installation, uppgradering, rmsource och rmspec kan tvingas fram" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "filer kan relokeras endast under paketinstallation" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "enbart en av --prefix eller --relocate kan användas" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate och --excludepath kan endast användas när nya paket installeras" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan endast användas när nya paket installeras" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "argument till --prefix mĺste börja med /" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan enbart användas vid paketinstallation" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent kan enbart användas vid paketinstallation" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan enbart användas vid paketinstallation" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs kan enbart användas vid paketinstallation" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs kan enbart användas vid paketinstallation" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs kan enbart användas vid paketinstallation" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "enbart en av --excludedocs och --includedocs kan användas" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch kan enbart användas vid paketinstallation" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos kan enbart användas vid paketinstallation" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize kan enbart användas vid paketinstallation" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches kan enbart användas när paket raderas" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles kan enbart användas vid paketinstallation" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb kan enbart användas när paket installeras eller raderas" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -326,7 +326,7 @@ msgstr "" "skriptdeaktiveringsflaggor kan enbart användas när paket installeras eller " "raderas" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -334,7 +334,7 @@ msgstr "" "utlösardeaktiveringsflaggor kan enbart användas när paket installeras eller " "raderas" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -342,13 +342,13 @@ msgstr "" "--nodeps kan enbart användas när paket byggs, byggs om, kompileras om, " "installeras, raderas eller verifieras" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test kan enbart användas när paket installeras, raderas eller byggs" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -356,87 +356,87 @@ msgstr "" "--root (-r) kan enbart användas när paket installeras, raderas, frĺgas eller " "databasen byggs om" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "argument till --root (-r) mĺste börja med /" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "inga filer att signera\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "kan inte komma ĺt filen %s\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp hittades inte: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Ange lösenfras: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Kontrollen av lösenfrasen misslyckades\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Lösenfrasen är ok.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Felaktig %%_signature-spec i makrofil.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign kan enbart användas vid pakettillverkning" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "exec misslyckades\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "inga paketfiler angivna för omtillverkning" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "inga specfiler angivna för tillverkning" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "inga tar-filer angivna för tillverkning" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "inga paket angivna för signering" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "inga paket angivna för installation" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "inga parametrar angivna för frĺga" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "inga parametrar angivna för verifiering" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "oväntade argument till --querytags " -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "inga parametrar angivna för frĺga" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Kan inte öppna temporär fil.\n" @@ -514,180 +514,180 @@ msgstr "&& och || st msgid "syntax error in expression\n" msgstr "syntaxfel i uttryck\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK-fel: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Saknad \"(\" i %s %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Saknad \")\" i %s(%s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ogiltig %s token: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, c-format msgid "Missing %s in %s %s\n" msgstr "Saknad %s i %s %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Annat än blanktecken följer pĺ %s(): %s\n" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Felaktig syntax: %s(%s)\n" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Felaktig rättighetsspecifikation: %s(%s)\n" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Ovanlig lokallängd: \"%.*s\" i %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Duplicerad lokal %.*s i %%lang(%s)\n" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Slog i gränsen för %%docdir\n" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "Endast ett argument till %%docdir\n" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "Tvĺ filer pĺ en rad: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Filnamn mĺste börja med \"/\": %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Kan inte blanda special %%doc med andra former: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "Filen uppräknad tvĺ gĺnger: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolisk länk pekar pĺ BuildRoot: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Filen matchar inte prefixet (%s): %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "Filen hittades inte: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Felaktig ägare/grupp: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Fil %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Filen behöver inledande \"/\": %s\n" -#: build/files.c:1735 +#: build/files.c:1738 #, c-format msgid "Glob not permitted: %s\n" msgstr "Matchning inte tillĺtet: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "Hittade ingen fil vid matchningen: %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Kunde inte öppna %%files-fil %s: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "rad: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Felaktig fil: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Kunde inte köra %s: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Kunde inte grena %s: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s misslyckades\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "kunde inte skriva all data till %s\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Letar upp %s: (använder %s)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "Misslyckades med att hitta %s:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Bearbetar filer: %s-%s-%s\n" @@ -721,152 +721,152 @@ msgstr "getGidS: f msgid "Could not canonicalize hostname: %s\n" msgstr "Kunde inte kanonisera värdnamn: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "skapande av arkiv misslyckades vid fil %s: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "skapande av arkiv misslyckades: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy kunde inte skriva: %s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy kunde inte läsa: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Kunde inte öppna PreIn-fil: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Kunde inte öppna PreUn-fil: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Kunde inte öppna PostIn-fil: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Kunde inte öppna PostUn-fil: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Kunde inte öppna VerifyScript-fil: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Kunde inte öppna Trigger-skriptfil: %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: öppna %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: läs %s: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek misslyckades: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s är inte ett RPM-paket\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: läser huvud frĺn %s\n" -#: build/pack.c:471 +#: build/pack.c:473 msgid "Unable to create immutable header region.\n" msgstr "Kan inte skapa oföränderlig huvudregion.\n" -#: build/pack.c:490 +#: build/pack.c:492 msgid "Unable to write temp header\n" msgstr "Kan inte skriva temporärhuvud\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "Felaktig CSA-data\n" -#: build/pack.c:536 +#: build/pack.c:538 msgid "Unable to write final header\n" msgstr "Kan inte skriva slutligt huvud\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Genererar signatur: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 msgid "Unable to reload signature header.\n" msgstr "Kan inte läsa om signaturhuvud.\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "Kunde inte öppna %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunde inte skriva paket: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Kan inte läsa signaturen %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Kan inte läsa huvud frĺn %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Kan inte skriva huvud till %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Kan inte läsa last frĺn %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Kan inte skriva last till %s: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Kunde inte generera utfilnamn för paketet %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "kan inte skapa %s: %s\n" @@ -1371,17 +1371,17 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "slĺ upp översatta strängar i specfilkatalog" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "rad %d: Felaktigt tal: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "rad %d: Felaktigt no%s-tal: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "rad %d: Felaktigt %s-tal: %s\n" @@ -1427,70 +1427,70 @@ msgstr "Ingen arkivfilen i huvud" msgid " failed - " msgstr " misslyckades - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "paket %s är redan installerat" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s JA (rpmrc tillhandahĺller)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s JA (rpmlib tillhandahĺller)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "felaktig db-fil %s\n" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s JA (db-tillhandahĺllande)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "inga paket\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "NEJ " -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "JA" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "tar bort %s-%s-%s \"%s\" frĺn tsort-relationer.\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "========== noterar alla relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1498,20 +1498,20 @@ msgid "" msgstr "" "========== tsort:erar paket (ordning, #föregĺngare, #efterföljare, djup)\n" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "========== endast efterföljare (presentationsordning)\n" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "LOOP:\n" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "========== fortsätter med tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1560,47 +1560,47 @@ msgstr "kunde inte msgid "file %s is on an unknown device\n" msgstr "filen %s är pĺ en okänd enhet\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "katalog %s skapad med rättigheter %04o.\n" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "arkivfil %s fanns inte i huvudets fillista\n" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s sparades som %s\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s misslyckades: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s misslyckades: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s skapades som %s\n" @@ -2076,302 +2076,302 @@ msgid "generate signature" msgstr "generera signatur" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "paket %s är för en annan arkitektur" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "paket %s är för ett annat operativsystem" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "paket %s är redan installerat" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "sökväg %s i paket %s är inte relokerbar" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "fil %s är en konflikt mellan installationsförsök av %s och %s" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "fil %s frĺn installation av %s stĺr i konflikt med filen frĺn paket %s" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "paket %s (som är nyare än %s) är redan installerat" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "installation av paket %s kräver %ld%cB pĺ filsystem %s" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "installation av paket %s kräver %ld inoder pĺ filsystem %s" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "paket %s systemanrop före transaktion: %s misslyckades: %s" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "okänt fel %d uppträdde under behandling av paket %s" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " stĺr i konflikt med %s-%s-%s\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " behövs av %s-%s-%s\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "Datatyp %d stöds inte\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "kan inte skapa %%%s %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "kan inte skriva till %%%s %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "källpaket förväntades, fann binärpaket\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "källpaket innehĺller ingen .spec-fil\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: kör (eventuellt) %s-skript\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" "körning av %s-skript frĺn %s-%s-%s misslyckades, waitpid returnerade %s\n" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "körning av %s-skript frĺn %s-%s-%s misslyckades, slutstatus %d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s har %d filer, test = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "användare %s finns inte - använder root\n" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "grupp %s finns inte - använder root\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "uppackning av arkiv misslyckades%s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " vid fil " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s misslyckades pĺ fil %s: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, c-format msgid "%s failed: %s\n" msgstr "%s misslyckades: %s\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "fel format: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(innehĺller inga filer)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normal " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "ersatt " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "oinstallerat " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "nätdelad " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(okänd %3d) " -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(ej tillstnd) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "paketet har varken filägare eller id-listor\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "kan inte frĺga %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "misslyckades med att öppna %s: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "frĺga av %s misslyckades\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "källpaket i gammalt format gĺr inte att frĺga om\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: läsning av paketlista misslyckades: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "frĺga av specfil %s misslyckades, kan inte tolka\n" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "inga paket\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupp %s innehĺller inga paket\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "inga paketutlösare %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Misslyckades med att läsa %s: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "inga paketutlösare %s\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "inget paket behöver %s\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "inget paket tillhandahĺller %s\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tillhör inget paket\n" -#: lib/query.c:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "paketpost nummer: %u\n" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "post %u kunde inte läsas\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "felaktig db-fil %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s JA (db-tillhandahĺllande)\n" @@ -2465,89 +2465,89 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "Förbereder..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "Förbereder paket för installation ..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "Hämtar %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr " ... som %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "hoppar över %s - överföring misslyckades - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "paket %s är inte relokerbart\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "fel vid läsning frĺn fil %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "filen %s behöver en nyare version av RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s kan inte installeras\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "hittade %d käll- och %d binärpaket\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "ouppfyllda beroenden:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "installerar binärpaket\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "kan inte öppna filen %s: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" anger flera paket\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "kan inte öppna %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "Installerar %s\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2657,172 +2657,172 @@ msgstr "Kan inte msgid "cannot open Packages database in %s\n" msgstr "kan inte öppna paketdatabas i %s\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" "Förväntad storlek: %12d = inledning(%d)+signaturer(%d)+utfyllnad(%d)+data(%" "d)\n" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr " Faktisk storlek: %12d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Ingen signatur\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Gammal PGP-signatur\n" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammal (endast intern) signatur! Hur fick du tag i den!?\n" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunde inte köra %s: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "pgp misslyckades\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "pgp misslyckades att skriva en signatur\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP signaturstorlek: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "kan inte läsa signaturen\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fick %d byte PGP-signatur\n" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "gpg misslyckades\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "gpg kunde inte skriva signatur\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstorlek: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fick %d byte GPG-signatur\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Felaktig %%_signature-spec i makrofil\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du mĺste sätta \"%%_gpg_name\" i din makrofil\n" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du mĺste sätta \"%%_pgp_name\" i din makrofil\n" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Huvudstorleken för stor" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "hoppa över eventuella MD5-signaturer" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Ingen signatur\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad pĺ grund av missingok-flagga\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "hämtar lista över monterade filsystem\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "saknas %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Ouppfyllda beroenden för %s-%s-%s: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n" diff --git a/po/tr.po b/po/tr.po index c256bbf66..9e47a009d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-10 15:55-0400\n" +"POT-Creation-Date: 2002-04-11 12:12-0400\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -10,53 +10,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.2alpha\n" -#: build.c:36 +#: build.c:39 msgid "failed build dependencies:\n" msgstr "iţlem durdu, önce bađýmlý paketler kurulmalý:\n" -#: build.c:65 +#: build.c:71 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "%s spec dosyasý açýlamadý: %s\n" -#: build.c:145 build.c:157 +#: build.c:151 build.c:163 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar veriyolu açýlamadý: %m\n" #. Give up -#: build.c:164 +#: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" msgstr "%s paketinden spec dosyasý okunamadý\n" -#: build.c:192 +#: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s %s olarak deđiţtirilemedi: %m\n" -#: build.c:232 +#: build.c:238 #, c-format msgid "failed to stat %s: %m\n" msgstr "%s durum bilgileri alýnamadý: %m\n" -#: build.c:237 +#: build.c:243 #, c-format msgid "File %s is not a regular file.\n" msgstr "%s bir normal bir dosya deđil.\n" -#: build.c:246 +#: build.c:252 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s bir spec dosyasý gibi görünmüyor.\n" #. parse up the build operators -#: build.c:301 +#: build.c:307 #, c-format msgid "Building target platforms: %s\n" msgstr "Hedef platformlar derleniyor: %s\n" -#: build.c:316 +#: build.c:322 #, c-format msgid "Building for target %s\n" msgstr "%s için derleniyor\n" @@ -204,126 +204,126 @@ msgstr "Bu program GNU GPL ko msgid "Usage: %s {--help}\n" msgstr "Kullanýmý: %s {--help}\n" -#: rpmqv.c:597 +#: rpmqv.c:601 msgid "The --rcfile option has been eliminated.\n" msgstr "--rcfile seçeneđi kaldýrýlmýţtý.\n" -#: rpmqv.c:598 +#: rpmqv.c:602 msgid "Use \"--macros \" instead.\n" msgstr "Yerine \"--macros \" kullanýn.\n" -#: rpmqv.c:604 +#: rpmqv.c:608 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "(%d) argümaný iţlenirken iç hata oluţtu :-(\n" -#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 +#: rpmqv.c:649 rpmqv.c:655 rpmqv.c:661 rpmqv.c:699 msgid "only one major mode may be specified" msgstr "sadece bir ana kip belirtilebilir" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "one type of query/verify may be performed at a time" msgstr "bir anda sadece bir tarz sorgulama/denetleme yapýlabilir" -#: rpmqv.c:678 +#: rpmqv.c:682 msgid "unexpected query flags" msgstr "beklenmeyen sorgulama bayraklarý" -#: rpmqv.c:681 +#: rpmqv.c:685 msgid "unexpected query format" msgstr "beklenmeyen sorgulama biçemi" -#: rpmqv.c:684 +#: rpmqv.c:688 msgid "unexpected query source" msgstr "beklenmeyen sorgulama kaynađý" -#: rpmqv.c:725 +#: rpmqv.c:729 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath bir veritabaný kullanmayan iţlemler için verilmiţ" -#: rpmqv.c:731 +#: rpmqv.c:735 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "sadece kaynak ve spec silme iţlemleri, kurma, güncelleme iţlemleri için " "zorlanabilir" -#: rpmqv.c:733 +#: rpmqv.c:737 msgid "files may only be relocated during package installation" msgstr "" "dosyalar sadece paket kurulumu sýrasýnda yeni yerlerine yerleţtirilebilir" -#: rpmqv.c:736 +#: rpmqv.c:740 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir" -#: rpmqv.c:739 +#: rpmqv.c:743 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate ve --excludepath sadece yeni paket kurulumunda kullanýlabilir" -#: rpmqv.c:742 +#: rpmqv.c:746 msgid "--prefix may only be used when installing new packages" msgstr "--prefix sadece yeni paketlerin kurulmasý sýrasýnda kullanýlabilir" -#: rpmqv.c:745 +#: rpmqv.c:749 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ile belirtilenler '/' ile baţlamalý" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:752 +#: rpmqv.c:756 msgid "--percent may only be specified during package installation" msgstr "--percent sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ve --includedocs bir arada kullanýlamaz" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:781 +#: rpmqv.c:785 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:794 +#: rpmqv.c:798 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:799 +#: rpmqv.c:803 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb sadece paket kurulumu ve kaldýrýlmasý sýrasýnda kullanýlabilir" -#: rpmqv.c:804 +#: rpmqv.c:808 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -331,7 +331,7 @@ msgstr "" "betik iptal etme seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda " "kullanýlabilir" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -339,7 +339,7 @@ msgstr "" "tetikleme iptal seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda " "kullanýlabilir" -#: rpmqv.c:813 +#: rpmqv.c:817 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -347,7 +347,7 @@ msgstr "" "--nodeps sadece paket oluţturma, yeniden oluţturma, yeniden derleme, " "kurulum, kaldýrma ve denetleme iţlemlerinde kullanýlabilir" -#: rpmqv.c:818 +#: rpmqv.c:822 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -355,7 +355,7 @@ msgstr "" "--test sadece paket kurulumu, kaldýrýlmasý ve oluţturulmasý iţlemlerinde " "kullanýlabilir" -#: rpmqv.c:823 +#: rpmqv.c:827 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -363,87 +363,87 @@ msgstr "" "--root (-r) sadece kurulum, kaldýrma, sorgulama ve yeniden veritabaný " "oluţturma iţlemlerinde kullanýlabilir" -#: rpmqv.c:835 +#: rpmqv.c:839 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ile verilenler '/' ile baţlamalý" -#: rpmqv.c:859 +#: rpmqv.c:863 msgid "no files to sign\n" msgstr "imzalanacak dosya yok\n" -#: rpmqv.c:864 +#: rpmqv.c:868 #, c-format msgid "cannot access file %s\n" msgstr "%s dosyasý bulunamýyor\n" -#: rpmqv.c:883 +#: rpmqv.c:887 msgid "pgp not found: " msgstr "pgp bulunamadý: " -#: rpmqv.c:888 +#: rpmqv.c:892 msgid "Enter pass phrase: " msgstr "Anahtar parolasýný girin: " -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase check failed\n" msgstr "Anahtar parolasý kontrolü baţarýsýz\n" -#: rpmqv.c:894 +#: rpmqv.c:898 msgid "Pass phrase is good.\n" msgstr "Anahtar parolasý dođru.\n" -#: rpmqv.c:899 +#: rpmqv.c:903 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Makro dosyasýndaki %%_signature spec geçersiz.\n" -#: rpmqv.c:906 +#: rpmqv.c:910 msgid "--sign may only be used during package building" msgstr "--sign sadece paket oluţturulurken kullanýlabilir" -#: rpmqv.c:923 +#: rpmqv.c:927 msgid "exec failed\n" msgstr "icra baţarýsýz\n" -#: rpmqv.c:955 +#: rpmqv.c:959 msgid "no packages files given for rebuild" msgstr "yeniden oluţturmak için paket dosyalarý belirtilmemiţ" -#: rpmqv.c:1023 +#: rpmqv.c:1027 msgid "no spec files given for build" msgstr "oluţturma için gerekli spec dosyasý belirtilmemiţ" -#: rpmqv.c:1025 +#: rpmqv.c:1029 msgid "no tar files given for build" msgstr "oluţturma için gereken tar dosyalarý belirtilmemiţ" -#: rpmqv.c:1047 +#: rpmqv.c:1051 #, fuzzy msgid "no packages given for erase" msgstr "imzalanacak paket(ler) belirtilmedi" -#: rpmqv.c:1088 +#: rpmqv.c:1092 msgid "no packages given for install" msgstr "yüklenecek paket(ler) belirtilmedi" -#: rpmqv.c:1104 +#: rpmqv.c:1108 msgid "no arguments given for query" msgstr "sorgulama için hiç argüman belirtilmedi" -#: rpmqv.c:1117 +#: rpmqv.c:1121 msgid "no arguments given for verify" msgstr "denetleme için hiç argüman belirtilmedi" -#: rpmqv.c:1125 +#: rpmqv.c:1129 msgid "unexpected arguments to --querytags " msgstr "--querytags ile beklenmeyen girdiler" -#: rpmqv.c:1141 +#: rpmqv.c:1145 #, fuzzy msgid "no arguments given" msgstr "sorgulama için hiç argüman belirtilmedi" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:485 msgid "Unable to open temp file.\n" msgstr "Geçici dosya açýlamadý.\n" @@ -521,180 +521,180 @@ msgstr "&& ve || dizgelerde desteklenmez\n" msgid "syntax error in expression\n" msgstr "ifadede sözdizimi hatasý\n" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK baţarýsýz: %s\n" -#: build/files.c:333 build/files.c:529 build/files.c:718 +#: build/files.c:336 build/files.c:532 build/files.c:721 #, c-format msgid "Missing '(' in %s %s\n" msgstr "%s içinde '(' yok: %s\n" -#: build/files.c:344 build/files.c:657 build/files.c:729 +#: build/files.c:347 build/files.c:660 build/files.c:732 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "%s içinde ')' yok: (%s\n" -#: build/files.c:382 build/files.c:682 +#: build/files.c:385 build/files.c:685 #, c-format msgid "Invalid %s token: %s\n" msgstr "Andaç %s geçersiz: %s\n" -#: build/files.c:490 +#: build/files.c:493 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "%s içinde '(' yok: %s\n" -#: build/files.c:545 +#: build/files.c:548 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "%s() boţluksuz yazýlmýţ: %s\n" -#: build/files.c:583 +#: build/files.c:586 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Sözdizimi hatasý: %s(%s)\n" -#: build/files.c:593 +#: build/files.c:596 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "mode spec hatalý: %s(%s)\n" -#: build/files.c:605 +#: build/files.c:608 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "dirmode spec hatalý: %s(%s)\n" -#: build/files.c:756 +#: build/files.c:759 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "yerel uzunluđu hatalý: \"%.*s\" (%%lang(%s))\n" #. @innercontinue@ -#: build/files.c:767 +#: build/files.c:770 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "%.*s yereli %%lang(%s) içinde tekrarlanmýţ\n" -#: build/files.c:924 +#: build/files.c:927 #, c-format msgid "Hit limit for %%docdir\n" msgstr "%%docdir için hit sýnýrý\n" -#: build/files.c:930 +#: build/files.c:933 #, c-format msgid "Only one arg for %%docdir\n" msgstr "%%docdir için sadece tek argüman\n" #. We already got a file -- error -#: build/files.c:958 +#: build/files.c:961 #, c-format msgid "Two files on one line: %s\n" msgstr "Bir satýrda 2 dosya: %s\n" -#: build/files.c:973 +#: build/files.c:976 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Dosya \"/\" ile baţlamalý: %s\n" -#: build/files.c:986 +#: build/files.c:989 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Özel %%doc ile diđer formlar karýţtýrýlamaz: %s\n" -#: build/files.c:1137 +#: build/files.c:1140 #, c-format msgid "File listed twice: %s\n" msgstr "Dosya iki kere gösterildi: %s\n" -#: build/files.c:1281 +#: build/files.c:1284 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Sembolik bađ BuildRoot gösteriyor: %s -> %s\n" -#: build/files.c:1523 +#: build/files.c:1526 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Dosya önek (%s) ile uyumsuz: %s\n" -#: build/files.c:1547 +#: build/files.c:1550 #, c-format msgid "File not found: %s\n" msgstr "Dosya bulunamadý: %s\n" -#: build/files.c:1590 build/files.c:2210 build/parsePrep.c:50 +#: build/files.c:1593 build/files.c:2213 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Kullanýcý/grup hatalý: %s\n" -#: build/files.c:1603 +#: build/files.c:1606 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Dosya %4d: %07o %s.%s\t %s\n" -#: build/files.c:1712 +#: build/files.c:1715 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Dosya \"/\" ile içermeli: %s\n" -#: build/files.c:1735 +#: build/files.c:1738 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "satýr %d: Dosya adý uygun deđil: %s\n" -#: build/files.c:1750 +#: build/files.c:1753 #, c-format msgid "File not found by glob: %s\n" msgstr "Dosya glob tarafýndan bulunamadý: %s\n" -#: build/files.c:1812 +#: build/files.c:1815 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n" -#: build/files.c:1823 build/pack.c:146 +#: build/files.c:1826 build/pack.c:148 #, c-format msgid "line: %s\n" msgstr "satýr: %s\n" -#: build/files.c:2198 +#: build/files.c:2201 #, c-format msgid "Bad file: %s: %s\n" msgstr "Dosya hatalý: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2272 +#: build/files.c:2275 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "%s icra edilemedi: %s\n" -#: build/files.c:2277 +#: build/files.c:2280 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "%s ayrýlamadý: %s\n" -#: build/files.c:2361 +#: build/files.c:2364 #, c-format msgid "%s failed\n" msgstr "%s baţarýsýz\n" -#: build/files.c:2365 +#: build/files.c:2368 #, c-format msgid "failed to write all data to %s\n" msgstr "tüm veri %s içine yazýlamadý\n" -#: build/files.c:2521 +#: build/files.c:2524 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "%s aranýyor: (%s kullanarak)...\n" -#: build/files.c:2550 build/files.c:2564 +#: build/files.c:2553 build/files.c:2567 #, c-format msgid "Failed to find %s:\n" msgstr "%s bulunamadý:\n" -#: build/files.c:2686 +#: build/files.c:2689 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Ýţlenen dosyalar: %s-%s-%s\n" @@ -728,156 +728,156 @@ msgstr "getGidS: msgid "Could not canonicalize hostname: %s\n" msgstr "Böyle bir makina yok: %s\n" -#: build/pack.c:79 +#: build/pack.c:81 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "%s dosyasýnda arţiv oluţturulamadý: %s\n" -#: build/pack.c:82 +#: build/pack.c:84 #, c-format msgid "create archive failed: %s\n" msgstr "arţiv oluţturulamadý: %s\n" -#: build/pack.c:104 +#: build/pack.c:106 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy yazma hatasý:%s\n" -#: build/pack.c:111 +#: build/pack.c:113 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy okuma hatasý: %s\n" -#: build/pack.c:214 +#: build/pack.c:216 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "PreIn dosyasý açýlamadý: %s\n" -#: build/pack.c:221 +#: build/pack.c:223 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "PreUn dosyasý açýlamadý: %s\n" -#: build/pack.c:228 +#: build/pack.c:230 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "PostIn dosyasý açýlamadý: %s\n" -#: build/pack.c:235 +#: build/pack.c:237 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "PostUn dosyasý açýlamadý: %s\n" -#: build/pack.c:243 +#: build/pack.c:245 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "VerifyScript dosyasý açýlamadý: %s\n" -#: build/pack.c:258 +#: build/pack.c:260 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Trigger betik dosyasý açýlamadý: %s\n" -#: build/pack.c:286 +#: build/pack.c:288 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: %s açýlýrken: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: %s okunurken: %s\n" -#: build/pack.c:305 build/pack.c:529 +#: build/pack.c:307 build/pack.c:531 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek baţarýsýz: %s\n" -#: build/pack.c:333 +#: build/pack.c:335 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s bir RPM paketi deđil\n" -#: build/pack.c:342 +#: build/pack.c:344 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: %s baţlýđý okunuyor\n" -#: build/pack.c:471 +#: build/pack.c:473 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "%s'den baţlýk okunamadý: %s\n" -#: build/pack.c:490 +#: build/pack.c:492 #, fuzzy msgid "Unable to write temp header\n" msgstr "%s'e baţlýk yazýlamadý: %s\n" -#: build/pack.c:500 +#: build/pack.c:502 msgid "Bad CSA data\n" msgstr "CSA verisi geçersiz\n" -#: build/pack.c:536 +#: build/pack.c:538 #, fuzzy msgid "Unable to write final header\n" msgstr "%s'e baţlýk yazýlamadý: %s\n" -#: build/pack.c:556 +#: build/pack.c:558 #, c-format msgid "Generating signature: %d\n" msgstr "Ýmza üretiliyor: %d\n" -#: build/pack.c:574 +#: build/pack.c:576 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "%s'den baţlýk okunamadý: %s\n" -#: build/pack.c:582 +#: build/pack.c:584 #, c-format msgid "Could not open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:620 lib/psm.c:1444 #, c-format msgid "Unable to write package: %s\n" msgstr "paket yazýlamadý: %s\n" -#: build/pack.c:633 +#: build/pack.c:635 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "sigtarget %s açýlamadý: %s\n" -#: build/pack.c:644 +#: build/pack.c:646 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "%s'den baţlýk okunamadý: %s\n" -#: build/pack.c:658 +#: build/pack.c:660 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "%s'e baţlýk yazýlamadý: %s\n" -#: build/pack.c:668 +#: build/pack.c:670 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "%s'den payload okunamadý: %s\n" -#: build/pack.c:674 +#: build/pack.c:676 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "%s'e payload yazýlamadý: %s\n" -#: build/pack.c:699 lib/psm.c:1725 +#: build/pack.c:701 lib/psm.c:1732 #, c-format msgid "Wrote: %s\n" msgstr "Yazýldý: %s\n" -#: build/pack.c:766 +#: build/pack.c:768 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "%s paket dosyasý için çýktý dosya adý üretilemedi: %s\n" -#: build/pack.c:783 +#: build/pack.c:785 #, c-format msgid "cannot create %s: %s\n" msgstr "%s dosyasý oluţturulamýyor: %s\n" @@ -1391,17 +1391,17 @@ msgstr "hedef platforma zorlar" msgid "lookup i18N strings in specfile catalog" msgstr "spec dosyasýndaki i18n iletilerine bakar" -#: build/spec.c:233 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "satýr %d: Numara hatalý: %s\n" -#: build/spec.c:239 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "satýr %d: Hatalý no%s numarasý: %d\n" -#: build/spec.c:300 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "satýr %d: Hatalý %s numarasý: %s\n" @@ -1447,70 +1447,70 @@ msgstr "" msgid " failed - " msgstr " baţarýsýz - " -#: lib/depends.c:149 +#: lib/depends.c:152 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "%s zaten kurulu" -#: lib/depends.c:363 +#: lib/depends.c:366 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:391 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s EVET (rpmrc sađlar)\n" -#: lib/depends.c:404 +#: lib/depends.c:407 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s EVET (rpmlib sađlar)\n" -#: lib/depends.c:425 +#: lib/depends.c:428 #, fuzzy msgid "(db files)" msgstr "db dosyasý %s hatalý\n" -#: lib/depends.c:437 +#: lib/depends.c:440 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s EVET (db sađlar)\n" -#: lib/depends.c:450 +#: lib/depends.c:453 #, fuzzy msgid "(db package)" msgstr "paket yok\n" -#: lib/depends.c:489 +#: lib/depends.c:492 #, fuzzy, c-format msgid "%9s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) Bađýmlýlar alanýna eklendi.\n" -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "NO " msgstr "HAYIR " -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 +#: lib/depends.c:494 lib/rpmds.c:410 lib/rpmds.c:569 msgid "YES" msgstr "EVET" -#: lib/depends.c:759 +#: lib/depends.c:762 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:879 +#: lib/depends.c:882 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "tsort bađýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n" #. Record all relations. -#: lib/depends.c:1147 +#: lib/depends.c:1150 msgid "========== recording tsort relations\n" msgstr "========== tsort bađýntýlarý kaydediliyor\n" #. T4. Scan for zeroes. -#: lib/depends.c:1253 +#: lib/depends.c:1256 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1518,20 +1518,20 @@ msgid "" msgstr "" "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n" -#: lib/depends.c:1346 +#: lib/depends.c:1349 msgid "========== successors only (presentation order)\n" msgstr "========== sadece ardýllar (sunum sýrasý)\n" -#: lib/depends.c:1416 +#: lib/depends.c:1419 msgid "LOOP:\n" msgstr "ÇEVRÝM:\n" -#: lib/depends.c:1451 +#: lib/depends.c:1454 msgid "========== continuing tsort ...\n" msgstr "========== tsort sürüyor ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1456 +#: lib/depends.c:1459 #, c-format msgid "rpmdepOrder failed, %d elements remain\n" msgstr "" @@ -1580,47 +1580,47 @@ msgstr "%s a msgid "file %s is on an unknown device\n" msgstr "%s dosyasýnýn bulunduđu aygýt anlaţýlamadý\n" -#: lib/fsm.c:308 +#: lib/fsm.c:313 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Pakette bulunmayan dizinler:\n" -#: lib/fsm.c:310 +#: lib/fsm.c:315 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1196 +#: lib/fsm.c:1201 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%s dizin %04o izinleriyle oluţturuldu.\n" -#: lib/fsm.c:1487 +#: lib/fsm.c:1492 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1610 lib/fsm.c:1742 +#: lib/fsm.c:1615 lib/fsm.c:1747 #, c-format msgid "%s saved as %s\n" msgstr "%s %s olarak kaydedildi\n" -#: lib/fsm.c:1768 +#: lib/fsm.c:1773 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s / %s dizin silinemedi - Dizin boţ deđil\n" -#: lib/fsm.c:1774 +#: lib/fsm.c:1779 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s / %s dizinin silinmesi baţarýsýz: %s\n" -#: lib/fsm.c:1784 +#: lib/fsm.c:1789 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s / %s bađ kaldýrýlamadý: %s\n" -#: lib/fsm.c:1804 +#: lib/fsm.c:1809 #, c-format msgid "%s created as %s\n" msgstr "%s %s olarak oluţturuldu\n" @@ -2100,301 +2100,301 @@ msgid "generate signature" msgstr "imza üretir" #. @observer@ -#: lib/problems.c:227 +#: lib/problems.c:228 msgid "different" msgstr "" -#: lib/problems.c:235 +#: lib/problems.c:236 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" msgstr "%s farklý bir mimari için" -#: lib/problems.c:240 +#: lib/problems.c:241 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" msgstr "%s farklý bir iţletim sistemi için" -#: lib/problems.c:245 +#: lib/problems.c:246 #, c-format msgid "package %s is already installed" msgstr "%s zaten kurulu" -#: lib/problems.c:250 +#: lib/problems.c:251 #, c-format msgid "path %s in package %s is not relocateable" msgstr "%s dosya yolu %s paketinde yeniden konumlandýrýlamaz" -#: lib/problems.c:255 +#: lib/problems.c:256 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" msgstr "%s dosyasý kalkýţýlan %s ve %s kurulumlarý arasýnda çeliţiyor" -#: lib/problems.c:260 +#: lib/problems.c:261 #, c-format msgid "file %s from install of %s conflicts with file from package %s" msgstr "%s dosyasýnýn %s kurulumu %s kurulumundaki dosya ile çeliţiyor" -#: lib/problems.c:265 +#: lib/problems.c:266 #, c-format msgid "package %s (which is newer than %s) is already installed" msgstr "%s paketi zaten yüklü (%s sürümünden daha yeni)" -#: lib/problems.c:270 +#: lib/problems.c:271 #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "%s kurulumu %ld%cb gerektiriyor (%s dosya sisteminde)" -#: lib/problems.c:280 +#: lib/problems.c:281 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "%s kurulumu %ld i-düđüm gerektiriyor (%s dosya sisteminde)" -#: lib/problems.c:285 +#: lib/problems.c:286 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "%s iţlem öncesi sistem çađrý(sý/larý): %s baţarýsýz: %s" -#: lib/problems.c:289 +#: lib/problems.c:290 #, fuzzy, c-format msgid "package %s has unsatisfied Requires: %s\n" msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n" -#: lib/problems.c:293 +#: lib/problems.c:294 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n" -#: lib/problems.c:298 +#: lib/problems.c:299 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "anlaţýlamayan %d hatasý, %s paketi iţlenirken saptandý" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "conflicts with" msgstr " %s-%s-%s ile çeliţiyor\n" -#: lib/problems.c:378 +#: lib/problems.c:379 #, fuzzy msgid "is needed by" msgstr " %s-%s-%s için gerekli\n" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:245 rpmdb/header.c:383 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "%d veri türü desteklenmiyor\n" -#: lib/psm.c:444 +#: lib/psm.c:442 #, c-format msgid "cannot create %%%s %s\n" msgstr "%%%s dosyasý oluţturulamýyor: %s\n" -#: lib/psm.c:450 +#: lib/psm.c:448 #, c-format msgid "cannot write to %%%s %s\n" msgstr "%%%s dosyasýna yazýlamaz %s\n" -#: lib/psm.c:483 +#: lib/psm.c:481 msgid "source package expected, binary found\n" msgstr "kaynak paketi gerekirken çalýţtýrýlabilir paketi bulundu\n" -#: lib/psm.c:599 +#: lib/psm.c:597 msgid "source package contains no .spec file\n" msgstr "kaynak paketi .spec dosyasý içermiyor\n" -#: lib/psm.c:709 +#: lib/psm.c:716 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: %s betiđi çalýţtýrýlýyor (varsa)\n" -#: lib/psm.c:875 +#: lib/psm.c:882 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "%s betiđinin %s-%s-%s'den icrasý baţarýsýz, waitpid sonucu %s\n" -#: lib/psm.c:882 +#: lib/psm.c:889 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "%s betiđinin %s-%s-%s'den icrasý baţarýsýz, çýkýţta durum %d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1231 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n" -#: lib/psm.c:1344 +#: lib/psm.c:1351 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: %s betiđi baţarýsýz (%d), %s-%s-%s atlanýyor\n" -#: lib/psm.c:1486 +#: lib/psm.c:1493 #, c-format msgid "user %s does not exist - using root\n" msgstr "kullanýcý %s yok - root kullanýlacak\n" -#: lib/psm.c:1495 +#: lib/psm.c:1502 #, c-format msgid "group %s does not exist - using root\n" msgstr "grup %s yok - root kullanýlacak\n" -#: lib/psm.c:1537 +#: lib/psm.c:1544 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "arţiv paketi açýlýrken baţarýsýz%s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1545 msgid " on file " msgstr " dosyada " -#: lib/psm.c:1733 +#: lib/psm.c:1740 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/psm.c:1736 +#: lib/psm.c:1743 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s baţarýsýz\n" -#: lib/query.c:124 +#: lib/query.c:125 #, c-format msgid "incorrect format: %s\n" msgstr "biçem yanlýţ: %s\n" -#: lib/query.c:220 +#: lib/query.c:221 msgid "(contains no files)" msgstr "(hiç dosya içermiyor)" -#: lib/query.c:281 +#: lib/query.c:282 msgid "normal " msgstr "normal " -#: lib/query.c:284 +#: lib/query.c:285 msgid "replaced " msgstr "yerine " -#: lib/query.c:287 +#: lib/query.c:288 msgid "not installed " msgstr "yüklenmedi " -#: lib/query.c:290 +#: lib/query.c:291 msgid "net shared " msgstr "ađ paylaţýmlý " -#: lib/query.c:293 +#: lib/query.c:294 #, c-format msgid "(unknown %3d) " msgstr "(bilinmeyen %3d)" -#: lib/query.c:298 +#: lib/query.c:299 msgid "(no state) " msgstr "(durumsuz) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:318 lib/query.c:374 msgid "package has neither file owner or id lists\n" msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n" -#: lib/query.c:462 +#: lib/query.c:463 #, c-format msgid "can't query %s: %s\n" msgstr "%s sorgulanamýyor: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:351 lib/rpminstall.c:493 +#: lib/rpminstall.c:870 #, c-format msgid "open of %s failed: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/query.c:632 +#: lib/query.c:633 #, c-format msgid "query of %s failed\n" msgstr "%s 'nin sorgulamasý baţarýsýzlýkla sonuçlandý\n" -#: lib/query.c:638 +#: lib/query.c:639 msgid "old format source packages cannot be queried\n" msgstr "eski biçem kaynak paketleri sorgulanamaz\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:665 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: read manifest failed: %s\n" msgstr "%s: bildirge okuma baţarýsýz: %s\n" -#: lib/query.c:708 +#: lib/query.c:709 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s spec dosyasýnýn sorgulanmasý baţarýsýz, çözümlenemiyor\n" -#: lib/query.c:729 +#: lib/query.c:730 msgid "no packages\n" msgstr "paket yok\n" -#: lib/query.c:749 +#: lib/query.c:750 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s grubu hiç paket içermiyor\n" -#: lib/query.c:759 +#: lib/query.c:760 #, c-format msgid "no package triggers %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#: lib/query.c:774 lib/query.c:796 lib/query.c:817 lib/query.c:852 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s okunamadý: %s.\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#: lib/query.c:784 lib/query.c:802 lib/query.c:827 lib/query.c:857 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:867 +#: lib/query.c:868 #, c-format msgid "no package requires %s\n" msgstr "%s gerektiren paket yok\n" -#: lib/query.c:878 +#: lib/query.c:879 #, c-format msgid "no package provides %s\n" msgstr "%s sađlayan paket yok\n" -#: lib/query.c:912 +#: lib/query.c:913 #, c-format msgid "file %s: %s\n" msgstr "dosya %s: %s\n" -#: lib/query.c:916 +#: lib/query.c:917 #, 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:943 +#: lib/query.c:944 #, c-format msgid "invalid package number: %s\n" msgstr "geçersiz paket numarasý: %s\n" -#: lib/query.c:946 +#: lib/query.c:947 #, c-format msgid "package record number: %u\n" msgstr "paket kayýt numarasý: %u\n" -#: lib/query.c:951 +#: lib/query.c:952 #, c-format msgid "record %u could not be read\n" msgstr "%u. kayýt okunamadý\n" -#: lib/query.c:962 lib/rpminstall.c:657 +#: lib/query.c:963 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "%s paketi kurulu deđil\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:684 #, fuzzy msgid "(added files)" msgstr "db dosyasý %s hatalý\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:781 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s EVET (db sađlar)\n" @@ -2488,89 +2488,89 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:161 msgid "Preparing..." msgstr "Hazýrlanýyor..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:163 msgid "Preparing packages for installation..." msgstr "Kurulacak paketler hazýrlanýyor..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:299 #, c-format msgid "Retrieving %s\n" msgstr "%s alýnýyor\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:311 #, c-format msgid " ... as %s\n" msgstr "... %s olarak\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:315 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s atlanýyor - aktarým baţarýsýz - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:413 #, c-format msgid "package %s is not relocateable\n" msgstr "%s paketi yeniden konumlandýrýlamaz\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:467 #, c-format msgid "error reading from file %s\n" msgstr "%s dosyasýndan okuma hatalý\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:473 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:485 lib/rpminstall.c:726 #, c-format msgid "%s cannot be installed\n" msgstr "%s yüklenemedi\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:521 #, c-format msgid "found %d source and %d binary packages\n" msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 +#: lib/rpminstall.c:539 lib/rpminstall.c:1062 msgid "failed dependencies:\n" msgstr "bađýmlýlýklarda hata; gerekli paketler:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:562 msgid "installing binary packages\n" msgstr "icra edilebilir paketleri kuruluyor\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:583 #, c-format msgid "cannot open file %s: %s\n" msgstr "%s dosyasý açýlamadý: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:663 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" birden fazla paketi tanýmlýyor\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:687 msgid "removing these packages would break dependencies:\n" msgstr "bu paketin silinmesi aţađýdakilerin bađýmlýlýklarýný etkileyecektir:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:713 #, c-format msgid "cannot open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:719 #, c-format msgid "Installing %s\n" msgstr "%s kuruluyor\n" -#: lib/rpminstall.c:1052 +#: lib/rpminstall.c:1055 #, c-format msgid "rollback %d packages to %s" msgstr "" @@ -2680,170 +2680,170 @@ msgstr "%s okuma eri msgid "cannot open Packages database in %s\n" msgstr "%s de Paket veritabaný açýlamadý\n" -#: lib/signature.c:122 +#: lib/signature.c:123 msgid "file is not regular -- skipping size check\n" msgstr "dosya normal deđil -- uzunluk denetimi atlanýyor\n" -#: lib/signature.c:131 +#: lib/signature.c:132 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "gereken boyut: %12d = (%d)uç+(%d)imza+(%d)iz+(%d)veri\n" -#: lib/signature.c:136 +#: lib/signature.c:137 #, c-format msgid " Actual size: %12d\n" msgstr " Gerçek boyut: %12d\n" -#: lib/signature.c:156 +#: lib/signature.c:157 msgid "No signature\n" msgstr "Ýmza yok\n" -#: lib/signature.c:160 +#: lib/signature.c:161 msgid "Old PGP signature\n" msgstr "Eski PGP imzasý\n" -#: lib/signature.c:171 +#: lib/signature.c:172 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Eski imza !!! Bunu nasýl aldýn!?\n" -#: lib/signature.c:225 +#: lib/signature.c:226 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" -#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 -#: lib/signature.c:701 +#: lib/signature.c:305 lib/signature.c:402 lib/signature.c:669 +#: lib/signature.c:702 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s icra edilemedi: %s\n" -#: lib/signature.c:320 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "pgp hata verdi\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:327 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "pgp imzasýnýn yazýlmasý baţarýsýz\n" -#: lib/signature.c:332 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP imza uzunluđu: %d\n" -#: lib/signature.c:346 lib/signature.c:444 +#: lib/signature.c:347 lib/signature.c:445 msgid "unable to read the signature\n" msgstr "imza okunamadý\n" -#: lib/signature.c:351 +#: lib/signature.c:352 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "GPG imzasýnýn %d baytý alýndý\n" -#: lib/signature.c:418 +#: lib/signature.c:419 msgid "gpg failed\n" msgstr "gpg hata verdi\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:425 +#: lib/signature.c:426 msgid "gpg failed to write signature\n" msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n" -#: lib/signature.c:430 +#: lib/signature.c:431 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG imza uzunluđu: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:450 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG imzasýnýn %d baytý alýndý\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:706 lib/signature.c:757 +#: lib/signature.c:707 lib/signature.c:758 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Makro dosyasýnda %%_signature spec geçersiz\n" -#: lib/signature.c:736 +#: lib/signature.c:737 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Makro dosyanýzda \"%%_pgp_name\" tanýmlanmýţ olmalý\n" -#: lib/signature.c:749 +#: lib/signature.c:750 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n" -#: lib/signature.c:793 +#: lib/signature.c:794 #, fuzzy msgid "Header+Payload size: " msgstr "Baţlýk çok uzun" -#: lib/signature.c:829 +#: lib/signature.c:830 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:878 +#: lib/signature.c:879 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1065 +#: lib/signature.c:1066 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "tüm MD5 imzalarýný atlar" -#: lib/signature.c:1175 +#: lib/signature.c:1176 msgid "Header " msgstr "" -#: lib/signature.c:1176 +#: lib/signature.c:1177 #, fuzzy msgid "V3 DSA signature: " msgstr "Ýmza yok\n" -#: lib/signature.c:1251 +#: lib/signature.c:1252 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1279 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1282 +#: lib/signature.c:1283 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" -#: lib/transaction.c:173 +#: lib/transaction.c:177 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok flamasýndan dolayý %s atlandý\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:989 #, c-format msgid "excluding directory %s\n" msgstr "%s dizini dýţlanýyor\n" -#: lib/transaction.c:1076 +#: lib/transaction.c:1080 msgid "getting list of mounted filesystems\n" msgstr "bađlý dosya sistemlerinin listesi alýnýyor\n" -#: lib/verify.c:323 +#: lib/verify.c:326 #, c-format msgid "missing %s" msgstr "eksik %s" -#: lib/verify.c:418 +#: lib/verify.c:421 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s için tatmin edici olmayan bađýmlýlýklar: " -#: lib/verify.c:458 +#: lib/verify.c:461 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "%s-%s-%s: deđiţmez baţlýk alaný özet denetimi baţarýsýz\n" diff --git a/python/header-py.c b/python/header-py.c index 49144b71e..8a653ed49 100644 --- a/python/header-py.c +++ b/python/header-py.c @@ -5,7 +5,10 @@ #include "Python.h" #include "rpmio_internal.h" #include "rpmcli.h" /* XXX for rpmCheckSig */ -#include "depends.h" /* XXX for ts->rpmdb */ + +#include "rpmfi.h" +#include "rpmts.h" /* XXX for ts->rpmdb */ + #include "legacy.h" #include "misc.h" #include "header_internal.h" diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 9da144631..0ad01fdbe 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -17,18 +17,16 @@ #include "Python.h" #include "rpmio_internal.h" #include "rpmcli.h" /* XXX for rpmCheckSig */ -#include "depends.h" /* XXX for ts->rpmdb */ +#include "rpmts.h" /* XXX for ts->rpmdb */ #include "legacy.h" #include "misc.h" #include "header_internal.h" #include "upgrade.h" -extern int _rpmio_debug; +#include "db-py.h" +#include "header-py.h" -/*@unused@*/ static inline Header headerAllocated(Header h) { - h->flags |= HEADERFLAG_ALLOCATED; - return 0; -} +extern int _rpmio_debug; /* XXX These names/constants have been removed from the rpmlib API. */ enum { @@ -46,1182 +44,10 @@ void initrpm(void); /* from lib/misc.c */ int rpmvercmp(const char * one, const char * two); - -/** \ingroup python - */ -typedef struct rpmdbObject_s rpmdbObject; - -/** \ingroup python - */ -typedef struct rpmdbMIObject_s rpmdbMIObject; - /** \ingroup python */ typedef struct rpmtransObject_s rpmtransObject; -/** \ingroup python - */ -typedef struct hdrObject_s hdrObject; - -/** \ingroup python - */ -static PyObject * pyrpmError; - -/** \ingroup python - * \class header - * \brief A python header object represents an RPM package header. - * - * All RPM packages have headers that provide metadata for the package. - * Header objects can be returned by database queries or loaded from a - * binary package on disk. - * - * The headerFromPackage function loads the package header from a - * package on disk. It returns a tuple of a "isSource" flag and the - * header object. The "isSource" flag is set to 1 if the package - * header was read from a source rpm or to 0 if the package header was - * read from a binary rpm. - * - * For example: - * \code - * import os, rpm - * - * fd = os.open("/tmp/foo-1.0-1.i386.rpm", os.O_RDONLY) - * (header, isSource) = rpm.headerFromPackage(fd) - * fd.close() - * \endcode - * The Python interface to the header data is quite elegant. It - * presents the data in a dictionary form. We'll take the header we - * just loaded and access the data within it: - * \code - * print header[rpm.RPMTAG_NAME] - * print header[rpm.RPMTAG_VERSION] - * print header[rpm.RPMTAG_RELEASE] - * \endcode - * in the case of our "foor-1.0-1.i386.rpm" package, this code would - * output: -\verbatim - foo - 1.0 - 1 -\endverbatim - * You make also access the header data by string name: - * \code - * print header['name'] - * \endcode - * This method of access is a bit slower because the name must be - * translated into the tag number dynamically. You also must make sure - * the strings in header lookups don't get translated, or the lookups - * will fail. - */ - -/** \ingroup python - * \name Class: header - */ -/*@{*/ - -/** \ingroup python - */ -struct hdrObject_s { - PyObject_HEAD; - Header h; - char ** md5list; - char ** fileList; - char ** linkList; - int_32 * fileSizes; - int_32 * mtimes; - int_32 * uids, * gids; /* XXX these tags are not used anymore */ - unsigned short * rdevs; - unsigned short * modes; -} ; - -/** \ingroup python - */ -static PyObject * hdrKeyList(hdrObject * s, PyObject * args) { - PyObject * list, *o; - HeaderIterator iter; - int tag, type; - - if (!PyArg_ParseTuple(args, "")) return NULL; - - list = PyList_New(0); - - iter = headerInitIterator(s->h); - while (headerNextIterator(iter, &tag, &type, NULL, NULL)) { - if (tag == HEADER_I18NTABLE) continue; - - switch (type) { - case RPM_BIN_TYPE: - case RPM_INT32_TYPE: - case RPM_CHAR_TYPE: - case RPM_INT8_TYPE: - case RPM_INT16_TYPE: - case RPM_STRING_ARRAY_TYPE: - case RPM_STRING_TYPE: - PyList_Append(list, o=PyInt_FromLong(tag)); - Py_DECREF(o); - } - } - - headerFreeIterator(iter); - - return list; -} - -/** \ingroup python - */ -static PyObject * hdrUnload(hdrObject * s, PyObject * args, PyObject *keywords) { - char * buf; - PyObject * rc; - int len, legacy = 0; - Header h; - static char *kwlist[] = { "legacyHeader", NULL}; - - if (!PyArg_ParseTupleAndKeywords(args, keywords, "|i", kwlist, &legacy)) - return NULL; - - h = headerLink(s->h, "hdrUnload h"); - /* XXX this legacy switch is a hack, needs to be removed. */ - if (legacy) { - h = headerCopy(s->h); /* XXX strip region tags, etc */ - headerFree(s->h, "hdrUnload s->h"); - } - len = headerSizeof(h, 0); - buf = headerUnload(h); - h = headerFree(h, "hdrUnload h"); - - if (buf == NULL || len == 0) { - PyErr_SetString(pyrpmError, "can't unload bad header\n"); - return NULL; - } - - rc = PyString_FromStringAndSize(buf, len); - free(buf); - - return rc; -} - -/** \ingroup python - * Returns a list of these tuples for each item that failed: - * (attr_name, correctValue, currentValue) - * It should be passed the file number to verify. - */ -static PyObject * hdrVerifyFile(hdrObject * s, PyObject * args) { - int fileNumber; - rpmVerifyAttrs verifyResult = 0; - PyObject * list, * tuple, * attrName; - int type, count; - struct stat sb; - char buf[2048]; - int i; - time_t timeInt; - struct tm * timeStruct; - - if (!PyInt_Check(args)) { - PyErr_SetString(PyExc_TypeError, "integer expected"); - return NULL; - } - - fileNumber = (int) PyInt_AsLong(args); - - { rpmTransactionSet ts; - int scareMem = 1; - TFI_t fi; - int rc; - - ts = rpmtransCreateSet(NULL, NULL); - fi = fiNew(ts, NULL, s->h, RPMTAG_BASENAMES, scareMem); - fi = tfiInit(fi, fileNumber); - if (fi != NULL && tfiNext(fi) >= 0) { - /* XXX this routine might use callbacks intelligently. */ - rc = rpmVerifyFile(ts, fi, &verifyResult, RPMVERIFY_NONE); - } else - rc = 1; - - fi = fiFree(fi, 1); - rpmtransFree(ts); - - if (rc) { - Py_INCREF(Py_None); - return Py_None; - } - } - - list = PyList_New(0); - - if (!verifyResult) return list; - - /* XXX Legacy tag needs to go away. */ - if (!s->fileList) { - headerGetEntry(s->h, RPMTAG_OLDFILENAMES, &type, (void **) &s->fileList, - &count); - } - - lstat(s->fileList[fileNumber], &sb); - - if (verifyResult & RPMVERIFY_MD5) { - if (!s->md5list) { - headerGetEntry(s->h, RPMTAG_FILEMD5S, &type, (void **) &s->md5list, - &count); - } - - if (domd5(s->fileList[fileNumber], buf, 1)) { - strcpy(buf, "00000000000000000000000000000000"); - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("checksum"); - PyTuple_SetItem(tuple, 0, attrName); - PyTuple_SetItem(tuple, 1, PyString_FromString(s->md5list[fileNumber])); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - if (verifyResult & RPMVERIFY_FILESIZE) { - if (!s->fileSizes) { - headerGetEntry(s->h, RPMTAG_FILESIZES, &type, (void **) &s->fileSizes, - &count); - - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("size"); - PyTuple_SetItem(tuple, 0, attrName); - - sprintf(buf, "%d", 100); - PyTuple_SetItem(tuple, 1, PyString_FromString(buf)); - sprintf(buf, "%ld", sb.st_size); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - if (verifyResult & RPMVERIFY_LINKTO) { - if (!s->linkList) { - headerGetEntry(s->h, RPMTAG_FILELINKTOS, &type, (void **) &s->linkList, - &count); - } - - i = readlink(s->fileList[fileNumber], buf, sizeof(buf)); - if (i <= 0) - strcpy(buf, "(unknown)"); - else - buf[i] = '\0'; - - tuple = PyTuple_New(3); - attrName = PyString_FromString("link"); - PyTuple_SetItem(tuple, 0, attrName); - PyTuple_SetItem(tuple, 1, PyString_FromString(s->linkList[fileNumber])); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - if (verifyResult & RPMVERIFY_MTIME) { - if (!s->mtimes) { - headerGetEntry(s->h, RPMTAG_FILEMTIMES, &type, (void **) &s->mtimes, - &count); - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("time"); - PyTuple_SetItem(tuple, 0, attrName); - - timeInt = sb.st_mtime; - timeStruct = localtime(&timeInt); - strftime(buf, sizeof(buf) - 1, "%c", timeStruct); - PyTuple_SetItem(tuple, 1, PyString_FromString(buf)); - - timeInt = s->mtimes[fileNumber]; - timeStruct = localtime(&timeInt); - strftime(buf, sizeof(buf) - 1, "%c", timeStruct); - - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - if (verifyResult & RPMVERIFY_RDEV) { - if (!s->rdevs) { - headerGetEntry(s->h, RPMTAG_FILERDEVS, &type, (void **) &s->rdevs, - &count); - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("device"); - - PyTuple_SetItem(tuple, 0, attrName); - sprintf(buf, "0x%-4x", s->rdevs[fileNumber]); - PyTuple_SetItem(tuple, 1, PyString_FromString(buf)); - sprintf(buf, "0x%-4x", (unsigned int) sb.st_rdev); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - /* - * RPMVERIFY_USER and RPM_VERIFY_GROUP are handled wrong here, but rpmlib.a - * doesn't do these correctly either. At least this is consistent. - * - * XXX Consistent? rpmlib.a verifies user/group quite well, thank you. - * XXX The code below does nothing useful. FILEUSERNAME needs to be - * XXX retrieved and looked up. - */ - if (verifyResult & RPMVERIFY_USER) { - if (!s->uids) { - headerGetEntry(s->h, RPMTAG_FILEUIDS, &type, (void **) &s->uids, - &count); - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("uid"); - PyTuple_SetItem(tuple, 0, attrName); - sprintf(buf, "%d", s->uids[fileNumber]); - PyTuple_SetItem(tuple, 1, PyString_FromString(buf)); - sprintf(buf, "%d", sb.st_uid); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - /* - * XXX The code below does nothing useful. FILEGROUPNAME needs to be - * XXX retrieved and looked up. - */ - if (verifyResult & RPMVERIFY_GROUP) { - if (!s->gids) { - headerGetEntry(s->h, RPMTAG_FILEGIDS, &type, (void **) &s->gids, - &count); - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("gid"); - PyTuple_SetItem(tuple, 0, attrName); - sprintf(buf, "%d", s->gids[fileNumber]); - PyTuple_SetItem(tuple, 1, PyString_FromString(buf)); - sprintf(buf, "%d", sb.st_gid); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - if (verifyResult & RPMVERIFY_MODE) { - if (!s->modes) { - headerGetEntry(s->h, RPMTAG_FILEMODES, &type, (void **) &s->modes, - &count); - } - - tuple = PyTuple_New(3); - attrName = PyString_FromString("permissions"); - PyTuple_SetItem(tuple, 0, attrName); - sprintf(buf, "0%-4o", s->modes[fileNumber]); - PyTuple_SetItem(tuple, 1, PyString_FromString(buf)); - sprintf(buf, "0%-4o", sb.st_mode); - PyTuple_SetItem(tuple, 2, PyString_FromString(buf)); - PyList_Append(list, tuple); - Py_DECREF(tuple); - } - - return list; -} - -/** \ingroup python - */ -static PyObject * hdrExpandFilelist(hdrObject * s, PyObject * args) { - expandFilelist (s->h); - - Py_INCREF(Py_None); - return Py_None; -} - -/** \ingroup python - */ -static PyObject * hdrCompressFilelist(hdrObject * s, PyObject * args) { - compressFilelist (s->h); - - Py_INCREF(Py_None); - return Py_None; -} - -/* make a header with _all_ the tags we need */ -/** \ingroup python - */ -static void mungeFilelist(Header h) -{ - const char ** fileNames = NULL; - int count = 0; - - if (!headerIsEntry (h, RPMTAG_BASENAMES) - || !headerIsEntry (h, RPMTAG_DIRNAMES) - || !headerIsEntry (h, RPMTAG_DIRINDEXES)) - compressFilelist(h); - - rpmBuildFileList(h, &fileNames, &count); - - if (fileNames == NULL || count <= 0) - return; - - /* XXX Legacy tag needs to go away. */ - headerAddEntry(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE, - fileNames, count); - - free((void *)fileNames); -} - -/** - */ -static PyObject * rhnUnload(hdrObject * s, PyObject * args) { - int len; - char * uh; - PyObject * rc; - Header h; - - if (!PyArg_ParseTuple(args, "")) - return NULL; - - h = headerLink(s->h, "rhnUnload h"); - - /* Retrofit a RHNPlatform: tag. */ - if (!headerIsEntry(h, RPMTAG_RHNPLATFORM)) { - const char * arch; - int_32 at; - if (headerGetEntry(h, RPMTAG_ARCH, &at, (void **)&arch, NULL)) - headerAddEntry(h, RPMTAG_RHNPLATFORM, at, arch, 1); - } - - /* Legacy headers are forced into immutable region. */ - if (!headerIsEntry(h, RPMTAG_HEADERIMMUTABLE)) { - Header nh = headerReload(h, RPMTAG_HEADERIMMUTABLE); - /* XXX Another unload/load cycle to "seal" the immutable region. */ - uh = headerUnload(nh); - headerFree(nh, "rhnUnload nh"); - h = headerLoad(uh); - headerAllocated(h); - } - - /* All headers have SHA1 digest, compute and add if necessary. */ - if (!headerIsEntry(h, RPMTAG_SHA1HEADER)) { - int_32 uht, uhc; - const char * digest; - size_t digestlen; - DIGEST_CTX ctx; - - headerGetEntry(h, RPMTAG_HEADERIMMUTABLE, &uht, (void **)&uh, &uhc); - - ctx = rpmDigestInit(PGPHASHALGO_SHA1, RPMDIGEST_NONE); - rpmDigestUpdate(ctx, uh, uhc); - rpmDigestFinal(ctx, (void **)&digest, &digestlen, 1); - - headerAddEntry(h, RPMTAG_SHA1RHN, RPM_STRING_TYPE, digest, 1); - - uh = headerFreeData(uh, uht); - digest = _free(digest); - } - - len = headerSizeof(h, 0); - uh = headerUnload(h); - headerFree(h, "rhnUnload h"); - - rc = PyString_FromStringAndSize(uh, len); - free(uh); - - return rc; -} - -/** \ingroup python - */ -static PyObject * hdrFullFilelist(hdrObject * s, PyObject * args) { - if (!PyArg_ParseTuple(args, "")) - return NULL; - - mungeFilelist (s->h); - - Py_INCREF(Py_None); - return Py_None; -} - -/** \ingroup python - */ -static PyObject * hdrSprintf(hdrObject * s, PyObject * args) { - char * fmt; - char * r; - errmsg_t err; - PyObject * result; - - if (!PyArg_ParseTuple(args, "s", &fmt)) - return NULL; - - r = headerSprintf(s->h, fmt, rpmTagTable, rpmHeaderFormats, &err); - if (!r) { - PyErr_SetString(pyrpmError, err); - return NULL; - } - - result = Py_BuildValue("s", r); - free(r); - - return result; -} - - -/** \ingroup python - */ -static struct PyMethodDef hdrMethods[] = { - {"keys", (PyCFunction) hdrKeyList, 1 }, - {"unload", (PyCFunction) hdrUnload, METH_VARARGS|METH_KEYWORDS }, - {"verifyFile", (PyCFunction) hdrVerifyFile, 1 }, - {"expandFilelist", (PyCFunction) hdrExpandFilelist, 1 }, - {"compressFilelist", (PyCFunction) hdrCompressFilelist, 1 }, - {"fullFilelist", (PyCFunction) hdrFullFilelist, 1 }, - {"rhnUnload", (PyCFunction) rhnUnload, METH_VARARGS }, - {"sprintf", (PyCFunction) hdrSprintf, METH_VARARGS }, - {NULL, NULL} /* sentinel */ -}; - -/** \ingroup python - */ -static PyObject * hdrGetAttr(hdrObject * s, char * name) { - return Py_FindMethod(hdrMethods, (PyObject * ) s, name); -} - -/** \ingroup python - */ -static void hdrDealloc(hdrObject * s) { - if (s->h) headerFree(s->h, "hdrDealloc s->h"); - if (s->md5list) free(s->md5list); - if (s->fileList) free(s->fileList); - if (s->linkList) free(s->linkList); - PyMem_DEL(s); -} - -/** \ingroup python - */ -static long tagNumFromPyObject (PyObject *item) -{ - char * str; - int i; - - if (PyInt_Check(item)) { - return PyInt_AsLong(item); - } else if (PyString_Check(item)) { - str = PyString_AsString(item); - for (i = 0; i < rpmTagTableSize; i++) - if (!xstrcasecmp(rpmTagTable[i].name + 7, str)) break; - if (i < rpmTagTableSize) return rpmTagTable[i].val; - } - return -1; -} - -/** \ingroup python - */ -static PyObject * hdrSubscript(hdrObject * s, PyObject * item) { - int type, count, i, tag = -1; - void * data; - PyObject * o, * metao; - char ** stringArray; - int forceArray = 0; - int freeData = 0; - char * str; - struct headerSprintfExtension_s * ext = NULL; - const struct headerSprintfExtension_s * extensions = rpmHeaderFormats; - - if (PyCObject_Check (item)) - ext = PyCObject_AsVoidPtr(item); - else - tag = tagNumFromPyObject (item); - if (tag == -1 && PyString_Check(item)) { - /* if we still don't have the tag, go looking for the header - extensions */ - str = PyString_AsString(item); - while (extensions->name) { - if (extensions->type == HEADER_EXT_TAG - && !xstrcasecmp(extensions->name + 7, str)) { - (const struct headerSprintfExtension *) ext = extensions; - } - extensions++; - } - } - - if (ext) { - ext->u.tagFunction(s->h, &type, (const void **) &data, &count, &freeData); - } else { - if (tag == -1) { - PyErr_SetString(PyExc_KeyError, "unknown header tag"); - return NULL; - } - - if (!rpmHeaderGetEntry(s->h, tag, &type, &data, &count)) { - Py_INCREF(Py_None); - return Py_None; - } - } - - switch (tag) { - case RPMTAG_OLDFILENAMES: - case RPMTAG_FILESIZES: - case RPMTAG_FILESTATES: - case RPMTAG_FILEMODES: - case RPMTAG_FILEUIDS: - case RPMTAG_FILEGIDS: - case RPMTAG_FILERDEVS: - case RPMTAG_FILEMTIMES: - case RPMTAG_FILEMD5S: - case RPMTAG_FILELINKTOS: - case RPMTAG_FILEFLAGS: - case RPMTAG_ROOT: - case RPMTAG_FILEUSERNAME: - case RPMTAG_FILEGROUPNAME: - forceArray = 1; - break; - case RPMTAG_SUMMARY: - case RPMTAG_GROUP: - case RPMTAG_DESCRIPTION: - freeData = 1; - break; - default: - break; - } - - switch (type) { - case RPM_BIN_TYPE: - o = PyString_FromStringAndSize(data, count); - break; - - case RPM_INT32_TYPE: - if (count != 1 || forceArray) { - metao = PyList_New(0); - for (i = 0; i < count; i++) { - o = PyInt_FromLong(((int *) data)[i]); - PyList_Append(metao, o); - Py_DECREF(o); - } - o = metao; - } else { - o = PyInt_FromLong(*((int *) data)); - } - break; - - case RPM_CHAR_TYPE: - case RPM_INT8_TYPE: - if (count != 1 || forceArray) { - metao = PyList_New(0); - for (i = 0; i < count; i++) { - o = PyInt_FromLong(((char *) data)[i]); - PyList_Append(metao, o); - Py_DECREF(o); - } - o = metao; - } else { - o = PyInt_FromLong(*((char *) data)); - } - break; - - case RPM_INT16_TYPE: - if (count != 1 || forceArray) { - metao = PyList_New(0); - for (i = 0; i < count; i++) { - o = PyInt_FromLong(((short *) data)[i]); - PyList_Append(metao, o); - Py_DECREF(o); - } - o = metao; - } else { - o = PyInt_FromLong(*((short *) data)); - } - break; - - case RPM_STRING_ARRAY_TYPE: - stringArray = data; - - metao = PyList_New(0); - for (i = 0; i < count; i++) { - o = PyString_FromString(stringArray[i]); - PyList_Append(metao, o); - Py_DECREF(o); - } - free (stringArray); - o = metao; - break; - - case RPM_STRING_TYPE: - if (count != 1 || forceArray) { - stringArray = data; - - metao = PyList_New(0); - for (i=0; i < count; i++) { - o = PyString_FromString(stringArray[i]); - PyList_Append(metao, o); - Py_DECREF(o); - } - o = metao; - } else { - o = PyString_FromString(data); - if (freeData) - free (data); - } - break; - - default: - PyErr_SetString(PyExc_TypeError, "unsupported type in header"); - return NULL; - } - - return o; -} - -/** \ingroup python - */ -static PyMappingMethods hdrAsMapping = { - (inquiry) 0, /* mp_length */ - (binaryfunc) hdrSubscript, /* mp_subscript */ - (objobjargproc)0, /* mp_ass_subscript */ -}; - -/** \ingroup python - */ -static PyTypeObject hdrType = { - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ - "header", /* tp_name */ - sizeof(hdrObject), /* tp_size */ - 0, /* tp_itemsize */ - (destructor) hdrDealloc, /* tp_dealloc */ - 0, /* tp_print */ - (getattrfunc) hdrGetAttr, /* tp_getattr */ - 0, /* tp_setattr */ - 0, /* tp_compare */ - 0, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - &hdrAsMapping, /* tp_as_mapping */ -}; - -/*@}*/ - -/** \ingroup python - * \class rpmdbMatchIterator - * \brief A python rpmdbMatchIterator object represents the result of an RPM - * database query. - */ - -/** \ingroup python - * \name Class: rpmdbMatchIterator - */ -/*@{*/ - -/** \ingroup python - */ -struct rpmdbObject_s { - PyObject_HEAD; - rpmdb db; - int offx; - int noffs; - int *offsets; -} ; - -/** \ingroup python - */ -struct rpmdbMIObject_s { - PyObject_HEAD; - rpmdbObject *db; - rpmdbMatchIterator mi; -} ; - -/** \ingroup python - */ -static PyObject * -rpmdbMINext(rpmdbMIObject * s, PyObject * args) { - /* XXX assume header? */ - Header h; - hdrObject * ho; - - - h = rpmdbNextIterator(s->mi); - if (!h) { - Py_INCREF(Py_None); - return Py_None; - } - - ho = PyObject_NEW(hdrObject, &hdrType); - ho->h = headerLink(h, "rpmdbMINext"); - ho->fileList = ho->linkList = ho->md5list = NULL; - ho->uids = ho->gids = ho->mtimes = ho->fileSizes = NULL; - ho->modes = ho->rdevs = NULL; - - return (PyObject *) ho; -} - -/** \ingroup python - */ -static struct PyMethodDef rpmdbMIMethods[] = { - {"next", (PyCFunction) rpmdbMINext, 1 }, - {NULL, NULL} /* sentinel */ -}; - -/** \ingroup python - */ -static PyObject * rpmdbMIGetAttr (rpmdbObject *s, char *name) { - return Py_FindMethod (rpmdbMIMethods, (PyObject *) s, name); -} - -/** \ingroup python - */ -static void rpmdbMIDealloc(rpmdbMIObject * s) { - if (s && s->mi) { - rpmdbFreeIterator(s->mi); - } - Py_DECREF (s->db); - PyMem_DEL(s); -} - -/** \ingroup python - */ -static PyTypeObject rpmdbMIType = { - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ - "rpmdbMatchIterator", /* tp_name */ - sizeof(rpmdbMIObject), /* tp_size */ - 0, /* tp_itemsize */ - (destructor) rpmdbMIDealloc, /* tp_dealloc */ - 0, /* tp_print */ - (getattrfunc) rpmdbMIGetAttr, /* tp_getattr */ - 0, /* tp_setattr */ - 0, /* tp_compare */ - 0, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ -}; - -/*@}*/ - -/** \ingroup python - * \class rpmdb - * \brief A python rpmdb object represents an RPM database. - * - * Instances of the rpmdb object provide access to the records of a - * RPM database. The records are accessed by index number. To - * retrieve the header data in the RPM database, the rpmdb object is - * subscripted as you would access members of a list. - * - * The rpmdb class contains the following methods: - * - * - firstkey() Returns the index of the first record in the database. - * @deprecated Legacy, use rpmdbMatchIterator instead. - * - * - nextkey(index) Returns the index of the next record after "index" in the - * database. - * @param index current rpmdb location - * @deprecated Legacy, use rpmdbMatchIterator instead. - * - * - findbyfile(file) Returns a list of the indexes to records that own file - * "file". - * @param file absolute path to file - * - * - findbyname(name) Returns a list of the indexes to records for packages - * named "name". - * @param name package name - * - * - findbyprovides(dep) Returns a list of the indexes to records for packages - * that provide "dep". - * @param dep provided dependency string - * - * To obtain a rpmdb object, the opendb function in the rpm module - * must be called. The opendb function takes two optional arguments. - * The first optional argument is a boolean flag that specifies if the - * database is to be opened for read/write access or read-only access. - * The second argument specifies an alternate root directory for RPM - * to use. - * - * An example of opening a database and retrieving the first header in - * the database, then printing the name of the package that the header - * represents: - * \code - * import rpm - * rpmdb = rpm.opendb() - * index = rpmdb.firstkey() - * header = rpmdb[index] - * print header[rpm.RPMTAG_NAME] - * \endcode - * To print all of the packages in the database that match a package - * name, the code will look like this: - * \code - * import rpm - * rpmdb = rpm.opendb() - * indexes = rpmdb.findbyname("foo") - * for index in indexes: - * header = rpmdb[index] - * print "%s-%s-%s" % (header[rpm.RPMTAG_NAME], - * header[rpm.RPMTAG_VERSION], - * header[rpm.RPMTAG_RELEASE]) - * \endcode - */ - -/** \ingroup python - * \name Class: rpmdb - */ -/*@{*/ - -/** - */ -static PyObject * rpmdbFirst(rpmdbObject * s, PyObject * args) { - int first; - - if (!PyArg_ParseTuple (args, "")) return NULL; - - /* Acquire all offsets in one fell swoop. */ - if (s->offsets == NULL || s->noffs <= 0) { - rpmdbMatchIterator mi; - Header h; - - if (s->offsets) - free(s->offsets); - s->offsets = NULL; - s->noffs = 0; - mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, NULL, 0); - while ((h = rpmdbNextIterator(mi)) != NULL) { - s->noffs++; - s->offsets = realloc(s->offsets, s->noffs * sizeof(s->offsets[0])); - s->offsets[s->noffs-1] = rpmdbGetIteratorOffset(mi); - } - rpmdbFreeIterator(mi); - } - - s->offx = 0; - if (s->offsets != NULL && s->offx < s->noffs) - first = s->offsets[s->offx++]; - else - first = 0; - - if (!first) { - PyErr_SetString(pyrpmError, "cannot find first entry in database\n"); - return NULL; - } - - return Py_BuildValue("i", first); -} - -/** - */ -static PyObject * rpmdbNext(rpmdbObject * s, PyObject * args) { - int where; - - if (!PyArg_ParseTuple (args, "i", &where)) return NULL; - - if (s->offsets == NULL || s->offx >= s->noffs) { - Py_INCREF(Py_None); - return Py_None; - } - - where = s->offsets[s->offx++]; - - if (!where) { - Py_INCREF(Py_None); - return Py_None; - } - - return Py_BuildValue("i", where); -} - -/** - */ -static PyObject * handleDbResult(rpmdbMatchIterator mi) { - PyObject * list, *o; - - list = PyList_New(0); - - /* XXX FIXME: unnecessary header mallocs are side effect here */ - if (mi != NULL) { - while (rpmdbNextIterator(mi)) { - PyList_Append(list, o=PyInt_FromLong(rpmdbGetIteratorOffset(mi))); - Py_DECREF(o); - } - rpmdbFreeIterator(mi); - } - - return list; -} - -/** - */ -static PyObject * rpmdbByFile(rpmdbObject * s, PyObject * args) { - char * str; - - if (!PyArg_ParseTuple(args, "s", &str)) return NULL; - - return handleDbResult(rpmdbInitIterator(s->db, RPMTAG_BASENAMES, str, 0)); -} - -/** - */ -static PyObject * rpmdbByName(rpmdbObject * s, PyObject * args) { - char * str; - - if (!PyArg_ParseTuple(args, "s", &str)) return NULL; - - return handleDbResult(rpmdbInitIterator(s->db, RPMTAG_NAME, str, 0)); -} - -/** - */ -static PyObject * rpmdbByProvides(rpmdbObject * s, PyObject * args) { - char * str; - - if (!PyArg_ParseTuple(args, "s", &str)) return NULL; - - return handleDbResult(rpmdbInitIterator(s->db, RPMTAG_PROVIDENAME, str, 0)); -} - -/** - */ -static rpmdbMIObject * -py_rpmdbInitIterator (rpmdbObject * s, PyObject * args) { - PyObject *index = NULL; - char *key = NULL; - int len = 0, tag = -1; - rpmdbMIObject * mio; - - if (!PyArg_ParseTuple(args, "|Ozi", &index, &key, &len)) - return NULL; - - if (index == NULL) - tag = 0; - else if ((tag = tagNumFromPyObject (index)) == -1) { - PyErr_SetString(PyExc_TypeError, "unknown tag type"); - return NULL; - } - - mio = (rpmdbMIObject *) PyObject_NEW(rpmdbMIObject, &rpmdbMIType); - if (mio == NULL) { - PyErr_SetString(pyrpmError, "out of memory creating rpmdbMIObject"); - return NULL; - } - - mio->mi = rpmdbInitIterator(s->db, tag, key, len); - mio->db = s; - Py_INCREF (mio->db); - - return mio; -} - -/** - */ -static struct PyMethodDef rpmdbMethods[] = { - {"firstkey", (PyCFunction) rpmdbFirst, 1 }, - {"nextkey", (PyCFunction) rpmdbNext, 1 }, - {"findbyfile", (PyCFunction) rpmdbByFile, 1 }, - {"findbyname", (PyCFunction) rpmdbByName, 1 }, - {"findbyprovides", (PyCFunction) rpmdbByProvides, 1 }, - {"match", (PyCFunction) py_rpmdbInitIterator, 1 }, - {NULL, NULL} /* sentinel */ -}; - -/** - */ -static PyObject * rpmdbGetAttr(rpmdbObject * s, char * name) { - return Py_FindMethod(rpmdbMethods, (PyObject * ) s, name); -} - -/** - */ -static void rpmdbDealloc(rpmdbObject * s) { - if (s->offsets) { - free(s->offsets); - } - if (s->db) { - rpmdbClose(s->db); - } - PyMem_DEL(s); -} - -#ifndef DYINGSOON /* XXX OK, when? */ -/** - */ -static int -rpmdbLength(rpmdbObject * s) { - int count = 0; - - { rpmdbMatchIterator mi; - - /* RPMDBI_PACKAGES */ - mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, NULL, 0); - while (rpmdbNextIterator(mi) != NULL) - count++; - rpmdbFreeIterator(mi); - } - - return count; -} - -/** - */ -static hdrObject * -rpmdbSubscript(rpmdbObject * s, PyObject * key) { - int offset; - hdrObject * h; - - if (!PyInt_Check(key)) { - PyErr_SetString(PyExc_TypeError, "integer expected"); - return NULL; - } - - offset = (int) PyInt_AsLong(key); - - h = PyObject_NEW(hdrObject, &hdrType); - h->h = NULL; - { rpmdbMatchIterator mi; - mi = rpmdbInitIterator(s->db, RPMDBI_PACKAGES, &offset, sizeof(offset)); - if ((h->h = rpmdbNextIterator(mi)) != NULL) - h->h = headerLink(h->h, "rpmdbSubscript"); - rpmdbFreeIterator(mi); - } - h->fileList = h->linkList = h->md5list = NULL; - h->uids = h->gids = h->mtimes = h->fileSizes = NULL; - h->modes = h->rdevs = NULL; - if (!h->h) { - Py_DECREF(h); - PyErr_SetString(pyrpmError, "cannot read rpmdb entry"); - return NULL; - } - - return h; -} - -/** - */ -static PyMappingMethods rpmdbAsMapping = { - (inquiry) rpmdbLength, /* mp_length */ - (binaryfunc) rpmdbSubscript, /* mp_subscript */ - (objobjargproc)0, /* mp_ass_subscript */ -}; -#endif - -/** - */ -static PyTypeObject rpmdbType = { - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ - "rpmdb", /* tp_name */ - sizeof(rpmdbObject), /* tp_size */ - 0, /* tp_itemsize */ - (destructor) rpmdbDealloc, /* tp_dealloc */ - 0, /* tp_print */ - (getattrfunc) rpmdbGetAttr, /* tp_getattr */ - 0, /* tp_setattr */ - 0, /* tp_compare */ - 0, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ -#ifndef DYINGSOON - &rpmdbAsMapping, /* tp_as_mapping */ -#else - 0, -#endif -}; - -/*@}*/ - /** \ingroup python * \name Class: rpmtrans * \class rpmtrans @@ -1342,9 +168,12 @@ static PyObject * rpmtransAdd(rpmtransObject * s, PyObject * args) { PyObject * key; char * how = NULL; int isUpgrade = 0; + PyObject * hObj; if (!PyArg_ParseTuple(args, "OO|s", &h, &key, &how)) return NULL; - if (h->ob_type != &hdrType) { + + hObj = (PyObject *) h; + if (hObj->ob_type != &hdrType) { PyErr_SetString(PyExc_TypeError, "bad type for header argument"); return NULL; } @@ -1356,9 +185,9 @@ static PyObject * rpmtransAdd(rpmtransObject * s, PyObject * args) { isUpgrade = 1; if (how && !strcmp(how, "a")) - rpmtransAvailablePackage(s->ts, h->h, key); + rpmtransAvailablePackage(s->ts, hdrGetHeader(h), key); else - rpmtransAddPackage(s->ts, h->h, key, isUpgrade, NULL); + rpmtransAddPackage(s->ts, hdrGetHeader(h), key, isUpgrade, NULL); /* This should increment the usage count for me */ if (key) { @@ -1380,7 +209,7 @@ static PyObject * rpmtransRemove(rpmtransObject * s, PyObject * args) { return NULL; /* XXX: Copied hack from ../lib/rpminstall.c, rpmErase() */ - mi = rpmdbInitIterator(s->dbo->db, RPMDBI_LABEL, name, 0); + mi = rpmdbInitIterator(dbFromDb(s->dbo), RPMDBI_LABEL, name, 0); count = rpmdbGetIteratorCount(mi); if (count <= 0) { PyErr_SetString(pyrpmError, "package not installed"); @@ -1407,14 +236,15 @@ static PyObject * rpmtransDepCheck(rpmtransObject * s, PyObject * args) { int numConflicts; PyObject * list, * cf; int i; + int allSuggestions = 0; - if (!PyArg_ParseTuple(args, "")) return NULL; + if (!PyArg_ParseTuple(args, "|i", &allSuggestions)) return NULL; rpmdepCheck(s->ts, &conflicts, &numConflicts); if (numConflicts) { list = PyList_New(0); - /* XXX TODO: rpm >= 4.0.3 can return multiple suggested keys. */ + /* XXX TODO: rpmlib >= 4.0.3 can return multiple suggested keys. */ for (i = 0; i < numConflicts; i++) { #ifdef DYING cf = Py_BuildValue("((sss)(ss)iOi)", conflicts[i].byName, @@ -1542,6 +372,7 @@ static void * tsCallback(const void * hd, const rpmCallbackType what, const Header h = (Header) hd; if (cbInfo->pythonError) return NULL; + if (cbInfo->cb == Py_None) return NULL; if (!pkgKey) pkgKey = Py_None; transactionSetHeader = h; @@ -1717,7 +548,7 @@ static PyObject * rpmtransCreate(PyObject * self, PyObject * args) { char * rootPath = "/"; if (!PyArg_ParseTuple(args, "|sO", &rootPath, &db)) return NULL; - if (db && db->ob_type != &rpmdbType) { + if (db && ((PyObject *) db)->ob_type != &rpmdbType) { PyErr_SetString(PyExc_TypeError, "bad type for database argument"); return NULL; } @@ -1725,10 +556,10 @@ static PyObject * rpmtransCreate(PyObject * self, PyObject * args) { o = (void *) PyObject_NEW(rpmtransObject, &rpmtransType); Py_XINCREF(db); - o->dbo = db; /* XXX DYING: separate refcounts is bad craziness */ + o->dbo = db; o->scriptFd = NULL; o->ts = rpmtransCreateSet(NULL, rootPath); - o->ts->rpmdb = (db ? db->db : NULL); + o->ts->rpmdb = (db ? dbFromDb(db) : NULL); o->keyList = PyList_New(0); return (void *) o; @@ -1864,16 +695,16 @@ static PyObject * findUpgradeSet(PyObject * self, PyObject * args) { list.packages = alloca(sizeof(list.packages) * list.numPackages); for (i = 0; i < list.numPackages; i++) { hdr = (hdrObject *) PyList_GetItem(hdrList, i); - if (hdr->ob_type != &hdrType) { + if (((PyObject *) hdr)->ob_type != &hdrType) { PyErr_SetString(PyExc_TypeError, "list of headers expected"); return NULL; } list.packages[i] = alloca(sizeof(struct packageInfo)); - list.packages[i]->h = hdr->h; + list.packages[i]->h = hdrGetHeader(hdr); list.packages[i]->selected = 0; list.packages[i]->data = hdr; - headerGetEntry(hdr->h, RPMTAG_NAME, NULL, + headerGetEntry(list.packages[i]->h, RPMTAG_NAME, NULL, (void **) &list.packages[i]->name, NULL); } @@ -1895,151 +726,6 @@ static PyObject * findUpgradeSet(PyObject * self, PyObject * args) { return result; } -/** - */ -static PyObject * rpmHeaderFromPackage(PyObject * self, PyObject * args) { - hdrObject * h; - Header header; - FD_t fd; - int rawFd; - int isSource = 0; - rpmRC rc; - - if (!PyArg_ParseTuple(args, "i", &rawFd)) return NULL; - - fd = fdDup(rawFd); - { rpmTransactionSet ts; - ts = rpmtransCreateSet(NULL, NULL); - rc = rpmReadPackageFile(ts, fd, "rpmHeaderFromPackage", &header); - rpmtransFree(ts); - } - Fclose(fd); - - switch (rc) { - case RPMRC_BADSIZE: - case RPMRC_OK: - h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); - h->h = header; - h->fileList = h->linkList = h->md5list = NULL; - h->uids = h->gids = h->mtimes = h->fileSizes = NULL; - h->modes = h->rdevs = NULL; - isSource = headerIsEntry(header, RPMTAG_SOURCEPACKAGE); - break; - - case RPMRC_BADMAGIC: - Py_INCREF(Py_None); - h = (hdrObject *) Py_None; - break; - - case RPMRC_FAIL: - case RPMRC_SHORTREAD: - default: - PyErr_SetString(pyrpmError, "error reading package"); - return NULL; - } - - return Py_BuildValue("(Ni)", h, isSource); -} - -/** - */ -static PyObject * hdrLoad(PyObject * self, PyObject * args) { - char * obj, * copy=NULL; - Header hdr; - hdrObject * h; - int len; - - if (!PyArg_ParseTuple(args, "s#", &obj, &len)) return NULL; - - /* malloc is needed to avoid surprises from data swab in headerLoad(). */ - copy = malloc(len); - if (copy == NULL) { - PyErr_SetString(pyrpmError, "out of memory"); - return NULL; - } - memcpy (copy, obj, len); - - hdr = headerLoad(copy); - if (!hdr) { - PyErr_SetString(pyrpmError, "bad header"); - return NULL; - } - headerAllocated(hdr); - compressFilelist (hdr); - providePackageNVR (hdr); - - h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); - h->h = hdr; - h->fileList = h->linkList = h->md5list = NULL; - h->uids = h->gids = h->mtimes = h->fileSizes = NULL; - h->modes = h->rdevs = NULL; - - return (PyObject *) h; -} - -/** - */ -static PyObject * rhnLoad(PyObject * self, PyObject * args) { - char * obj, * copy=NULL; - Header hdr; - hdrObject * h; - int len; - - if (!PyArg_ParseTuple(args, "s#", &obj, &len)) return NULL; - - /* malloc is needed to avoid surprises from data swab in headerLoad(). */ - copy = malloc(len); - if (copy == NULL) { - PyErr_SetString(pyrpmError, "out of memory"); - return NULL; - } - memcpy (copy, obj, len); - - hdr = headerLoad(copy); - if (!hdr) { - PyErr_SetString(pyrpmError, "bad header"); - return NULL; - } - headerAllocated(hdr); - - /* XXX avoid the false OK's from rpmverifyDigest() with missing tags. */ - if (!headerIsEntry(hdr, RPMTAG_HEADERIMMUTABLE)) { - PyErr_SetString(pyrpmError, "bad header, not immutable"); - headerFree(hdr, "rhnLoad hdr #1"); - return NULL; - } - - /* XXX avoid the false OK's from rpmverifyDigest() with missing tags. */ - if (!headerIsEntry(hdr, RPMTAG_SHA1HEADER) - && !headerIsEntry(hdr, RPMTAG_SHA1RHN)) { - PyErr_SetString(pyrpmError, "bad header, no digest"); - headerFree(hdr, "rhnLoad hdr #2"); - return NULL; - } - - if (rpmVerifyDigest(hdr)) { - PyErr_SetString(pyrpmError, "bad header, digest check failed"); - headerFree(hdr, "rhnLoad hdr #3"); - return NULL; - } - - /* Retrofit a RHNPlatform: tag. */ - if (!headerIsEntry(hdr, RPMTAG_RHNPLATFORM)) { - const char * arch; - int_32 at; - if (headerGetEntry(hdr, RPMTAG_ARCH, &at, (void **)&arch, NULL)) - headerAddEntry(hdr, RPMTAG_RHNPLATFORM, at, arch, 1); - } - - h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); - h->h = hdr; - h->fileList = h->linkList = h->md5list = NULL; - h->uids = h->gids = h->mtimes = h->fileSizes = NULL; - h->modes = h->rdevs = NULL; - - return (PyObject *) h; -} - /** */ static PyObject * rpmInitDB(PyObject * self, PyObject * args) { @@ -2064,217 +750,6 @@ static PyObject * rpmInitDB(PyObject * self, PyObject * args) { return(Py_None); } -/** - */ -static rpmdbObject * rpmOpenDB(PyObject * self, PyObject * args) { - rpmdbObject * o; - char * root = ""; - int forWrite = 0; - - if (!PyArg_ParseTuple(args, "|is", &forWrite, &root)) return NULL; - - o = PyObject_NEW(rpmdbObject, &rpmdbType); - o->db = NULL; - o->offx = 0; - o->noffs = 0; - o->offsets = NULL; - - if (rpmdbOpen(root, &o->db, forWrite ? O_RDWR | O_CREAT: O_RDONLY, 0644)) { - char * errmsg = "cannot open database in %s"; - char * errstr = NULL; - int errsize; - - Py_DECREF(o); - /* PyErr_SetString should take varargs... */ - errsize = strlen(errmsg) + *root == '\0' ? 15 /* "/var/lib/rpm" */ : strlen(root); - errstr = alloca(errsize); - snprintf(errstr, errsize, errmsg, *root == '\0' ? "/var/lib/rpm" : root); - PyErr_SetString(pyrpmError, errstr); - return NULL; - } - - return o; -} - -/** - */ -static PyObject * rebuildDB (PyObject * self, PyObject * args) { - char * root = ""; - - if (!PyArg_ParseTuple(args, "s", &root)) return NULL; - - return Py_BuildValue("i", rpmdbRebuild(root)); -} - -/** - */ -static PyObject * rpmReadHeaders (FD_t fd) { - PyObject * list; - Header header; - hdrObject * h; - - if (!fd) { - PyErr_SetFromErrno(pyrpmError); - return NULL; - } - - list = PyList_New(0); - Py_BEGIN_ALLOW_THREADS - header = headerRead(fd, HEADER_MAGIC_YES); - - Py_END_ALLOW_THREADS - while (header) { - compressFilelist (header); - providePackageNVR (header); - h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); - h->h = header; - h->fileList = h->linkList = h->md5list = NULL; - h->uids = h->gids = h->mtimes = h->fileSizes = NULL; - h->modes = h->rdevs = NULL; - if (PyList_Append(list, (PyObject *) h)) { - Py_DECREF(list); - Py_DECREF(h); - return NULL; - } - - Py_DECREF(h); - - Py_BEGIN_ALLOW_THREADS - header = headerRead(fd, HEADER_MAGIC_YES); - Py_END_ALLOW_THREADS - } - - return list; -} - -/** - */ -static PyObject * rpmHeaderFromFD(PyObject * self, PyObject * args) { - FD_t fd; - int fileno; - PyObject * list; - - if (!PyArg_ParseTuple(args, "i", &fileno)) return NULL; - fd = fdDup(fileno); - - list = rpmReadHeaders (fd); - Fclose(fd); - - return list; -} - -/** - */ -static PyObject * rpmHeaderFromFile(PyObject * self, PyObject * args) { - char * filespec; - FD_t fd; - PyObject * list; - - if (!PyArg_ParseTuple(args, "s", &filespec)) return NULL; - fd = Fopen(filespec, "r.fdio"); - - if (!fd) { - PyErr_SetFromErrno(pyrpmError); - return NULL; - } - - list = rpmReadHeaders (fd); - Fclose(fd); - - return list; -} - -/** - * This assumes the order of list matches the order of the new headers, and - * throws an exception if that isn't true. - */ -static int rpmMergeHeaders(PyObject * list, FD_t fd, int matchTag) { - Header newH; - HeaderIterator iter; - int_32 * newMatch, * oldMatch; - hdrObject * ho; - int count = 0; - int type, c, tag; - void * p; - - Py_BEGIN_ALLOW_THREADS - newH = headerRead(fd, HEADER_MAGIC_YES); - - Py_END_ALLOW_THREADS - while (newH) { - if (!headerGetEntry(newH, matchTag, NULL, (void **) &newMatch, NULL)) { - PyErr_SetString(pyrpmError, "match tag missing in new header"); - return 1; - } - - ho = (hdrObject *) PyList_GetItem(list, count++); - if (!ho) return 1; - - if (!headerGetEntry(ho->h, matchTag, NULL, (void **) &oldMatch, NULL)) { - PyErr_SetString(pyrpmError, "match tag missing in new header"); - return 1; - } - - if (*newMatch != *oldMatch) { - PyErr_SetString(pyrpmError, "match tag mismatch"); - return 1; - } - - if (ho->md5list) free(ho->md5list); - if (ho->fileList) free(ho->fileList); - if (ho->linkList) free(ho->linkList); - - ho->md5list = NULL; - ho->fileList = NULL; - ho->linkList = NULL; - - iter = headerInitIterator(newH); - - while (headerNextIterator(iter, &tag, &type, (void *) &p, &c)) { - /* could be dupes */ - headerRemoveEntry(ho->h, tag); - headerAddEntry(ho->h, tag, type, p, c); - headerFreeData(p, type); - } - - headerFreeIterator(iter); - - Py_BEGIN_ALLOW_THREADS - newH = headerRead(fd, HEADER_MAGIC_YES); - Py_END_ALLOW_THREADS - } - - return 0; -} - -static PyObject * rpmMergeHeadersFromFD(PyObject * self, PyObject * args) { - FD_t fd; - int fileno; - PyObject * list; - int rc; - int matchTag; - - if (!PyArg_ParseTuple(args, "Oii", &list, &fileno, &matchTag)) return NULL; - - if (!PyList_Check(list)) { - PyErr_SetString(PyExc_TypeError, "first parameter must be a list"); - return NULL; - } - - fd = fdDup(fileno); - - rc = rpmMergeHeaders (list, fd, matchTag); - Fclose(fd); - - if (rc) { - return NULL; - } - - Py_INCREF(Py_None); - return Py_None; -} - - /** */ static PyObject * errorCB = NULL, * errorData = NULL; @@ -2344,47 +819,6 @@ static PyObject * errorString (PyObject * self, PyObject * args) { return PyString_FromString(rpmErrorString ()); } -/** - */ -static PyObject * versionCompare (PyObject * self, PyObject * args) { - hdrObject * h1, * h2; - - if (!PyArg_ParseTuple(args, "O!O!", &hdrType, &h1, &hdrType, &h2)) return NULL; - - return Py_BuildValue("i", rpmVersionCompare(h1->h, h2->h)); -} - -/** - */ -static PyObject * labelCompare (PyObject * self, PyObject * args) { - char *v1, *r1, *e1, *v2, *r2, *e2; - int rc; - - if (!PyArg_ParseTuple(args, "(zzz)(zzz)", - &e1, &v1, &r1, - &e2, &v2, &r2)) return NULL; - - if (e1 && !e2) - return Py_BuildValue("i", 1); - else if (!e1 && e2) - return Py_BuildValue("i", -1); - else if (e1 && e2) { - int ep1, ep2; - ep1 = atoi (e1); - ep2 = atoi (e2); - if (ep1 < ep2) - return Py_BuildValue("i", -1); - else if (ep1 > ep2) - return Py_BuildValue("i", 1); - } - - rc = rpmvercmp(v1, v2); - if (rc) - return Py_BuildValue("i", rc); - - return Py_BuildValue("i", rpmvercmp(r1, r2)); -} - /** */ static PyObject * checkSig (PyObject * self, PyObject * args) { @@ -2414,18 +848,12 @@ static PyObject * checkSig (PyObject * self, PyObject * args) { /** */ static PyObject * getTsHeader (PyObject * self, PyObject * args) { - hdrObject * h; if (!PyArg_ParseTuple(args, "")) return NULL; if (transactionSetHeader) { - h = (hdrObject *) PyObject_NEW(PyObject, &hdrType); - h->h = headerLink(transactionSetHeader, "checkSig"); - h->fileList = h->linkList = h->md5list = NULL; - h->uids = h->gids = h->mtimes = h->fileSizes = NULL; - h->modes = h->rdevs = NULL; - return (PyObject *) h; + return (PyObject *) createHeaderObject(transactionSetHeader); } Py_INCREF(Py_None); return (PyObject *) Py_None; @@ -2698,6 +1126,8 @@ void initrpm(void) { REGISTER_ENUM(RPMCALLBACK_UNINST_PROGRESS); REGISTER_ENUM(RPMCALLBACK_UNINST_START); REGISTER_ENUM(RPMCALLBACK_UNINST_STOP); + REGISTER_ENUM(RPMCALLBACK_UNPACK_ERROR); + REGISTER_ENUM(RPMCALLBACK_CPIO_ERROR); REGISTER_ENUM(RPMPROB_BADARCH); REGISTER_ENUM(RPMPROB_BADOS); @@ -2730,6 +1160,11 @@ void initrpm(void) { REGISTER_ENUM(RPMLOG_INFO); REGISTER_ENUM(RPMLOG_DEBUG); + REGISTER_ENUM(RPMMIRE_DEFAULT); + REGISTER_ENUM(RPMMIRE_STRCMP); + REGISTER_ENUM(RPMMIRE_REGEX); + REGISTER_ENUM(RPMMIRE_GLOB); + } /*@}*/ diff --git a/rpm.spec b/rpm.spec index 1eda35148..4a4d4f832 100644 --- a/rpm.spec +++ b/rpm.spec @@ -20,7 +20,7 @@ Name: rpm %define version 4.1 Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.04 +Release: 0.05 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -521,6 +521,9 @@ fi %{__prefix}/include/popt.h %changelog +* Thu Apr 11 2002 Jeff Johnson 4.1-0.05 +- rescusitate --rebuild. + * Wed Apr 10 2002 Jeff Johnsion 4.1-0.04 - beecrypt: add types.h, eliminate need for config.gnu.h. diff --git a/rpm.spec.in b/rpm.spec.in index 6e44398f7..2b0a19866 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -20,7 +20,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.04 +Release: 0.05 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -521,6 +521,9 @@ fi %{__prefix}/include/popt.h %changelog +* Thu Apr 11 2002 Jeff Johnson 4.1-0.05 +- rescusitate --rebuild. + * Wed Apr 10 2002 Jeff Johnsion 4.1-0.04 - beecrypt: add types.h, eliminate need for config.gnu.h. diff --git a/rpmqv.c b/rpmqv.c index f355f0b35..66967a51f 100755 --- a/rpmqv.c +++ b/rpmqv.c @@ -278,7 +278,11 @@ static void printUsage(void) } /*@-mods@*/ /* FIX: shrug */ -int main(int argc, const char ** argv, char ** envp) +#if defined(__GLIBC__) || defined(__LCLINT__) +int main(int argc, const char ** argv) +#else +int main(int argc, const char ** argv, /*@unused@*/ char ** envp) +#endif /*@globals __assert_program_name, rpmEVR, RPMVERSION, rpmGlobalMacroContext, rpmCLIMacroContext, fileSystem, internalState@*/ @@ -329,7 +333,7 @@ int main(int argc, const char ** argv, char ** envp) #endif setprogname(argv[0]); /* Retrofit glibc __progname */ -#if !defined(__GLIBC__) +#if !defined(__GLIBC__) && !defined(__LCLINT__) environ = envp; #endif diff --git a/system.h b/system.h index b51f2f2ac..45a6c154e 100644 --- a/system.h +++ b/system.h @@ -28,7 +28,7 @@ extern int chroot (const char *__path) /*@modifies errno, systemState @*/; /*@=superuser =declundef =incondefs @*/ #endif -#if !defined(__GLIBC__) +#if !defined(__GLIBC__) && !defined(__LCLINT__) extern char ** environ; #endif #endif diff --git a/tools/rpmsort.c b/tools/rpmsort.c index 62b6e4374..c1aa04f5e 100644 --- a/tools/rpmsort.c +++ b/tools/rpmsort.c @@ -4,8 +4,8 @@ #include #include -#define _NEED_TEITERATOR 1 -#include "depends.h" +#include "rpmte.h" +#include "rpmts.h" #include "manifest.h" #include "misc.h" diff --git a/tools/tpkgid.c b/tools/tpkgid.c index 9c92ec42a..ad1c68692 100644 --- a/tools/tpkgid.c +++ b/tools/tpkgid.c @@ -7,7 +7,8 @@ #include #include -#include "depends.h" +#include "rpmds.h" +#include "rpmts.h" #include "misc.h" /* XXX myGlobPatternP */ #include "debug.h" diff --git a/zlib/zlib.h b/zlib/zlib.h index 1bc5ecf27..b7eb7008d 100644 --- a/zlib/zlib.h +++ b/zlib/zlib.h @@ -1,4 +1,4 @@ -/*@-declundef -fcnuse -typeuse @*/ +/*@-declundef -fcnuse -noparams -typeuse @*/ /* zlib.h -- interface of the 'zlib' general purpose compression library version 1.1.4, March 11th, 2002 @@ -892,4 +892,4 @@ ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); #endif #endif /* _ZLIB_H */ -/*@=declundef =fcnuse =typeuse @*/ +/*@=declundef =fcnuse =noparams =typeuse @*/